* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

header {
    background: #ffffff;
    color: #000000;
    padding: 30px 20px;
    text-align: center;
}

.logo {
    max-width: 500px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1em;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

main {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 20px;
}

.session-card {
    background: #e8e8e8;
    border-radius: 0;
    margin-bottom: 20px;
    overflow: hidden;
    border-top: 4px solid #DB2128;
}

.submitted-badge {
    background: #27ae60;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
    margin-left: auto;
}

.session-header {
    background: #d0d0d0;
    padding: 15px 20px;
    border-bottom: 1px solid #bbb;
    display: flex;
    align-items: center;
    gap: 15px;
}

.session-title {
    font-size: 1.1em;
    font-weight: bold;
    color: #1B2A62;
    text-transform: uppercase;
    margin: 0;
}

.session-description {
    padding: 15px 20px;
    font-size: 0.9em;
    color: #555;
    background: #e8e8e8;
    border-bottom: 1px solid #ccc;
}

.session-sponsor {
    padding: 10px 20px;
    font-size: 0.85em;
    color: #DB2128;
    font-style: italic;
    background: #e8e8e8;
}

.session-form {
    padding: 15px 20px 20px;
    background: #e8e8e8;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85em;
    font-weight: bold;
    color: #1B2A62;
    margin-bottom: 5px;
}

.form-group input {
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
    background: white;
}

.form-group input:focus {
    outline: none;
    border-color: #1B2A62;
}

.btn-submit {
    background: #1B2A62;
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #DB2128;
}

.btn-submit:disabled {
    background: #999;
    cursor: not-allowed;
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 15px 25px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 1000;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    background: #27ae60;
}

.toast.error {
    background: #DB2128;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    header h1 {
        font-size: 1.5em;
    }
}
