

.signup-heading {
    text-align: center;
    font-size: 2.25em;
    margin-bottom: 50px;
    color: #333;
}

.signup-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
    grid-template-columns: 1fr;
}

/* Tablet/Small iPads: 2-2-1 layout */
@media (min-width: 768px) {
    .signup-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Make the 5th item span both columns and center its content */
    .signup-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* Desktop: 3-2 layout - moved to 1440px */
@media (min-width: 1440px) {
    .signup-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    /* First 3 items each span 2 columns (fills all 6) */
    .signup-card:nth-child(1),
    .signup-card:nth-child(2),
    .signup-card:nth-child(3) {
        grid-column: span 2;
    }
    
    /* 4th item starts at column 2, spans 2 columns */
    .signup-card:nth-child(4) {
        grid-column: 2 / span 2;
    }
    
    /* 5th item starts at column 4, spans 2 columns */
    .signup-card:nth-child(5) {
        grid-column: 4 / span 2;
        max-width: 100%;
        margin: 0;
    }
}

.signup-card {
    background-color: #fcfcfc;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.signup-card p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    text-align: center;
    flex-grow: 1;
}

.signup-button {
    display: block;
    width: 70%;
    margin: 0 auto;
    padding: 12px 20px;
    background-color: #0d3b66;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slightly larger font on bigger screens */
@media (min-width: 768px) {
    .signup-button {
        font-size: 1.05em;
        min-height: 56px;
    }
}

@media (min-width: 1440px) {
    .signup-button {
        font-size: 1.1em;
        min-height: 58px;
    }
}

.signup-button:hover {
    background: linear-gradient(#12518d, #0d3b66);
}



.password-wrapper {
    position: relative;
    max-width: 400px;
}

.password-wrapper input[type="password"],
.password-wrapper input[type="text"] {
    padding-right: 5px; /* Make room for toggle button */
}

/* Hide browser's default password toggle */
.password-wrapper input[type="password"]::-ms-reveal,
.password-wrapper input[type="password"]::-ms-clear,
.password-wrapper input[type="text"]::-ms-reveal,
.password-wrapper input[type="text"]::-ms-clear {
    display: none !important;
}

.password-wrapper input[type="password"]::-webkit-textfield-decoration-container,
.password-wrapper input[type="text"]::-webkit-textfield-decoration-container {
    visibility: hidden;
}

.password-toggle {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    font-size: 0.9em;
    padding: 8px 10px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.radio-option label {
    font-weight: normal;
    margin: 0;
    cursor: pointer;
}

.file-upload {
    padding: 10px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    background-color: #fafafa;
    max-width: 400px;
}


.registration-container {
    width: 80%;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.registration-form {
    background-color: #fcfcfc;
    max-width: 800px;
    margin: 0 auto; /* Center it */
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.form-title {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

.form-subtitle {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 35px;
    text-align: center;
}

.form-section-title {
    font-size: 1.3em;
    color: #333;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95em;
}

.form-input-small {
    width: 100%;
    max-width: 300px;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    background-color: #fff;
}

.form-input-medium {
    width: 100%;
    max-width: 400px;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    background-color: #fff;
}

.form-input-full {
    width: 100%;
    max-width: 600px;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    background-color: #fff;
}

.form-textarea {
    width: 100%;
    max-width: 600px;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    background-color: #fff;
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.form-select {
    width: 100%;
    max-width: 400px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    background-color: #fff;
    height: 65px;
}

.publications-container {
    margin-top: 10px;
}

.publication-field, 
.social-media-field, 
.media-outlets-field {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.publication-field input,
.social-media-field input, 
.media-outlets-field input {
    flex: 1;
}

.remove-field-btn {
    padding: 10px 16px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.9em;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.remove-field-btn:hover {
    background-color: #c0392b;
}

.add-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 0.95em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-more-btn:hover {
    background-color: #e0e0e0;
}

.conditional-fields {
    display: none;
}

.conditional-fields.show {
    display: block;
}

.submit-button {
    padding: 12px 20px;
    background-color: #0d3b66;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    text-align: center;
    min-height: 54px;
    min-width: 200px;
    display: flex;              /* Change from block to flex */
    align-items: center;        /* Center vertically */
    justify-content: center;    /* Center horizontally */
    margin: 0 auto;
}

.submit-button:hover {
    background: linear-gradient(#12518d, #0d3b66)
}

/* Slightly larger font on bigger screens */
@media (min-width: 768px) {
    .submit-btn {
        font-size: 1.05em;
        min-height: 56px;
    }
}

@media (min-width: 1440px) {
    .submit-btn {
        font-size: 1.1em;
        min-height: 58px;
    }
}

.help-text {
    font-size: 0.9rem;
    color: #3d3d3d;
    margin-top: 5px;
}

.help-text-margin-bottom {
   display: inline-block; /* Respects margins but stays inline */
    font-size: 0.9rem;
    color: #3d3d3d;
    margin-top: 5px;
    margin-bottom: 10px;
}

.brand-pair {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fafafa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    position: relative;
}

.brand-pair .remove-field-btn {
    position: absolute;
    top: 20px;
    right: 20px;
}

.registration-errors {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    color: #721c24;
}

.registration-errors ul {
    margin: 0;
    padding-left: 20px;
}

.registration-errors li {
    margin: 5px 0;
}



/* Required field asterisk */
.required {
    color: #e74c3c;
    font-weight: bold;
    margin-left: 3px;
}

/* Field notes for non-editable fields */
.field-note {
    color: #999;
    font-size: 1rem;
    font-weight: normal;
    font-style: italic;
}

/* Current profile picture preview */
.current-profile-picture {
    margin-bottom: 15px;
}

.profile-preview {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

/* Success message */
.edit-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    color: #155724;
}



/* Confirmation Modal Styles */
.confirm-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.confirm-modal {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.confirm-modal-content {
    text-align: center;
}

.confirm-modal-message {
    font-size: 16px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.5;
}

.confirm-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.confirm-modal-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.confirm-modal-yes {
    background-color: #dc3545;
    color: #ffffff;
}

.confirm-modal-yes:hover {
    background-color: #c82333;
}

.confirm-modal-no {
    background-color: #6c757d;
    color: #ffffff;
}

.confirm-modal-no:hover {
    background-color: #5a6268;
}

/* Dashboard Styles */
/* Dashboard Outer Container - matches registration-container */
.dashboard-outer-container {
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fcfcfc;
}

/* Dashboard Wrapper - matches registration-form */
.dashboard-wrapper {
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.dashboard-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.dashboard-left,
.dashboard-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dashboard-card {
    background-color: #fcfcfc;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 25px;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0d3b66;
}

/* Profile Card */
.profile-card .profile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-picture-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #0d3b66;
}

.profile-info {
    width: 100%;
}

.profile-name {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.profile-type {
    font-size: 14px;
    color: #6c757d;
    margin: 0 0 15px 0;
}

.profile-links {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}

.profile-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 12px 20px;
    background-color: #0d3b66;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    text-align: center;
    min-height: 54px;
}

.profile-link:hover {
    background: linear-gradient(#12518d, #0d3b66);
}

/* Slightly larger font on bigger screens */
@media (min-width: 768px) {
    .profile-link {
        font-size: 1.05em;
        min-height: 56px;
    }
}

@media (min-width: 1440px) {
    .profile-link {
        font-size: 1.1em;
        min-height: 58px;
    }
}

/* Stack profile buttons earlier */
@media (max-width: 950px) {
    .profile-links {
        flex-direction: column;
    }
    
    .profile-link {
        width: 100%;
    }
}

.notification-form {
    background-color: #fcfcfc;
    max-width: 800px;
    margin: 0 auto; /* Center it */
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.notification-form-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pitch-form-card {
    background-color: #ffffff;
    max-width: 800px;
    margin: 20px auto 0 auto; /* Top margin 20px, center horizontally */
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* My Notifications / My Callouts */
.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.notification-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.group-title {
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    margin: 0 0 5px 0;
}

.notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    
}

.notification-item:hover {
    background-color: #f1f3f5;
}

.pitch-item-dash {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    text-decoration: none;
}

.pitch-item-dash:hover {
    background-color: #f1f3f5;
}

.notification-title {
    color: #0d3b66;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    flex: 1;
    padding-left: 5px;
}

.notification-title:hover {
    text-decoration: underline;
}

.pitch-count {
    font-size: 12px;
    color: #6c757d;
    background-color: #e9ecef;
    padding: 4px 10px;
    border-radius: 12px;
    white-space: nowrap;
}

.view-all-link {
    display: inline-block;
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    margin-top: 10px;
}

.view-all-link:hover {
    text-decoration: underline;
}

/* My Pitches */
.pitches-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pitch-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.pitch-item:hover {
    background-color: #f1f3f5;
}

.pitch-notification-title {
    color: #0d3b66;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    flex: 1;
}

.pitch-notification-title:hover {
    text-decoration: underline;
}

.pitch-date {
    font-size: 12px;
    color: #6c757d;
    white-space: nowrap;
    margin-left: 10px;
}

/* Add Notification Buttons */
.add-notification-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
}

.add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 12px 20px;
    background-color: #0d3b66;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    text-align: center;
    min-height: 54px;
    max-width: 200px;
}

.add-btn:hover {
    background: linear-gradient(#12518d, #0d3b66);
}

/* Slightly larger font on bigger screens */
@media (min-width: 768px) {
    .add-btn {
        font-size: 1.05em;
        min-height: 56px;
    }
}

@media (min-width: 1440px) {
    .add-btn {
        font-size: 1.1em;
        min-height: 58px;
    }
}

/* Stack add notification buttons earlier */
@media (max-width: 950px) {
    .add-notification-buttons {
        flex-direction: column;
    }
    
    .add-btn {
        width: 100%;
    }
}

/* Notification Feed */
.feed-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feed-item {
    padding: 15px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    transition: box-shadow 0.2s ease;
}

.feed-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feed-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.feed-item-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.feed-item-title a {
    color: #333;
    text-decoration: none;
}

.feed-item-title a:hover {
    color: #4a90e2;
}

.feed-item-type {
    font-size: 11px;
    text-transform: uppercase;
    background-color: #4a90e2;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.feed-item-excerpt {
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.feed-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #6c757d;
}

.feed-item-date {
    font-style: italic;
}

.feed-item-pitches {
    background-color: #e9ecef;
    padding: 4px 10px;
    border-radius: 12px;
}

/* Empty States */
.no-items {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
    text-align: center;
    padding: 20px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-container {
        grid-template-columns: 1fr;
    }
}

/* Profile Card */
.profile-card .profile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-picture-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #0d3b66;
}

.profile-info {
    width: 100%;
}

.profile-name {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.profile-type {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.profile-edit-btn {
    margin-top: 20px;
}

/* Notification Preferences Card */
.notification-preferences-card {
    background-color: #fcfcfc;
}

.notification-preferences-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.preference-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.preference-option-label {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    min-width: 80px;
}

.preference-radio-group {
    display: flex;
    gap: 15px;
}

.preference-radio-group .radio-option {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.preference-radio-group .radio-option input[type="radio"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.preference-radio-group .radio-option span {
    font-size: 14px;
    color: #333;
}

.preferences-submit-btn {
    width: auto;
    max-width: 200px;
    padding: 12px 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .preference-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .profile-edit-btn {
        width: 100%;
    }
    
    .preferences-submit-btn {
        width: 100%;
        max-width: none;
    }
}
/* password reset-success */
.reset-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
}

.social-media-field {
    margin-bottom: 15px;
}

/* Notification Type Badges */
.notification-type-badge {
    display: inline-block;
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 20px;
}

.badge-callout { background: #3498db; }
.badge-media-callout { background: #9b59b6; }
.badge-press-trip { background: #e74c3c; }
.badge-partnership-callout { background: #f39c12; }
.badge-journalist-callout { background: #16a085; }

/* Posted By Section - Proper specificity */
.notification-form .posted-by-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.notification-form .posted-by-section .posted-by-label {
    margin: 0 0 8px 0;
    color: #666;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notification-form .posted-by-section .posted-by-name {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.notification-form .posted-by-section .posted-by-subtitle {
    margin: 5px 0 0 0;
    font-size: 16px;
    color: #666;
}

.notification-form .posted-by-section .posted-by-about {
    margin: 15px 0 0 0;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

/* Page Headings */
.notification-page-heading {
    margin: 0 0 20px 0;
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

.notification-main-title-container {
    display: flex;
    justify-content: space-between;
}

.notification-main-title {
    margin: 0 0 25px 0;
    font-size: 32px;
    color: #333;
    font-weight: bold;
}

/* Meta Info */
.notification-meta {
    margin-bottom: 20px;
}

.notification-meta p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.notification-meta strong {
    font-weight: 600;
    color: #333;
}

.expired-badge {
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    margin-left: 10px;
}

.extend-due-date-btn {
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    font-size: 14px;
}

.extend-due-date-btn:hover {
    background: #218838;
}

/* Content Sections */
.notification-section {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
}

.notification-section h3 {
    font-size: 20px;
    margin: 0 0 15px 0;
    font-weight: 600;
    color: #333;
}

.notification-section p {
    line-height: 1;
    white-space: pre-wrap;
    font-size: 16px;
    color: #444;
    margin: 0;
}

.notification-section .detail-item {
    padding: 0;
    text-indent: 0;
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #444;
    white-space: normal;
}

/* Pitches List */
.announcements-list {
    background: #fcfcfc;
    padding: 30px;
    margin: 20px auto 30px auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width:1200px;
}

/* Pitches List */
.pitches-list-card-all {
    background: #fcfcfc;
    padding: 30px;
    margin: 20px auto 30px auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width:1200px;
} 

/* Pitches List */
.pitches-list-card {
    background: #fcfcfc;
    padding: 30px;
    margin: 20px auto 30px auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width:800px;
}

.pitches-list-card h3 {
    font-size: 20px;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.pitches-list-card .no-pitches {
    color: #999;
    font-style: italic;
}

/* Pitches Table */
.pitches-table {
    width: 100%;
    border-collapse: collapse;
}

.pitches-table thead tr {
    border-bottom: 2px solid #ddd;
}

.pitches-table th {
    text-align: left;
    padding: 12px 10px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.pitches-table tbody tr {
    border-bottom: 1px solid #eee;
}

.pitches-table td {
    padding: 12px 10px;
    font-size: 14px;
}

.pitcher-info {
    display: flex;
    flex-direction: column;
}

.pitcher-name {
    font-weight: 500;
    color: #333;
}

.pitcher-org {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.pitch-status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.status-pending {
    background: #ffc107;
    color: #856404;
}

.status-considered, .status-accepted {
    background: #28a745;
    color: white;
}

.status-passed, .status-rejected {
    background: #dc3545;
    color: white;
}

.pitch-actions a {
    color: #4a90e2;
    text-decoration: none;
    font-size: 14px;
}

.pitch-actions a:hover {
    text-decoration: underline;
}

.pitch-actions .separator {
    margin: 0 8px;
    color: #ddd;
}

.accept-pitch-btn,
.reject-pitch-btn {
    border: none;
    padding: 6px 14px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
}

.accept-pitch-btn {
    background: #28a745;
    color: white;
}

.accept-pitch-btn:hover {
    background: #218838;
}

.reject-pitch-btn {
    background: #dc3545;
    color: white;
    margin-left: 5px;
}

.reject-pitch-btn:hover {
    background: #c82333;
}

/* Pitch Form Specific */
.pitch-form-card h3 {
    font-size: 20px;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.already-pitched-notice {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    padding: 15px;
    border-radius: 4px;
    color: #0c5460;
}

.pitch-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.pitch-form input[type="text"],
.pitch-form input[type="email"],
.pitch-form textarea,
.pitch-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
}

.pitch-form input[readonly] {
    background: #f5f5f5;
}

.pitch-form textarea {
    resize: vertical;
    min-height: 120px;
}

.pitch-form textarea::placeholder {
    color: #999;
    font-style: italic;
}

.pitch-form select[multiple] {
    min-height: 150px;
}

.pitch-form .field-help {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}

.pitch-form #submit-pitch-btn {
    background: #4a90e2;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
}

.pitch-form #submit-pitch-btn:hover {
    background: #3a7bc8;
}

#pitch-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

#pitch-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Admin Context Banner */
.admin-context-banner {
    background: #f0f6fc;
    border-bottom: 3px solid #0073aa;
    padding: 15px 20px;
    margin-bottom: 30px;
}

.admin-return-link {
    color: #0073aa;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Back Button */
.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.btn-secondary:hover {
    background: #f8f9fa;
}

/* Submit Pitch Button */
.pitch-form #submit-pitch-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background-color: #0d3b66;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    text-align: center;
    min-height: 54px;
    max-width: 200px;
    margin: 0 auto;
    border: none;
    cursor: pointer;
}

.pitch-form #submit-pitch-btn:hover {
    background: linear-gradient(#12518d, #0d3b66);
}

/* Back to Dashboard Button */
.back-to-dashboard-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background-color: #0d3b66;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    text-align: center;
    min-height: 54px;
    max-width: 200px;
    margin: 0 auto;
}

.back-to-dashboard-btn:hover {
    background: linear-gradient(#12518d, #0d3b66);
}

/* View Pitch Styles */
.notification-context-card {
    background: white;
    padding: 20px;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 800px;
}

.context-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.context-header h3 {
    margin: 0;
    font-size: 18px;
    color: #666;
}

.toggle-details-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #4a90e2;
}

.toggle-details-btn:hover {
    background: #f8f9fa;
}

.notification-brief p {
    margin: 10px 0 0 0;
    font-size: 16px;
    color: #666;
}

.notification-full-details {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.notification-full-details p {
    margin: 0 0 10px 0;
    font-size: 16px;
}

.notification-full-details .description-block {
    margin-top: 15px;
}

.notification-full-details .description-block strong {
    font-weight: 600;
}

.notification-full-details .description-block p {
    margin: 10px 0 0 0;
    line-height: 1;

    white-space: pre-wrap;
}

.notification-full-details .view-full-link {
    display: inline-block;
    margin-top: 15px;
    color: #4a90e2;
    text-decoration: none;
}

.notification-full-details .view-full-link:hover {
    text-decoration: underline;
}

.pitcher-contact {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.pitcher-contact-label {
    margin: 0 0 5px 0;
    color: #666;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.pitcher-contact p {
    margin: 0;
    font-size: 14px;
}

.pitcher-contact a {
    color: #4a90e2;
    text-decoration: none;
}

.pitcher-contact a:hover {
    text-decoration: underline;
}

.pitch-submission-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submission-date-label {
    margin: 0 0 5px 0;
    color: #666;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.submission-date-value {
    margin-top: 10px;
    font-size: 15px;
}

.pitch-message-box {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 4px;
}

.pitch-message-box p {
    margin: 0;
    line-height: 1.6;
    white-space: pre-wrap;
}

.deliverables-list {
    margin: 0;
    padding-left: 20px;
    font-size: 15px;
}

.deliverables-list li {
    margin-bottom: 8px;
    line-height: 1;
    font-size: 16px;
}

.deliverables-other {
    margin: 10px 0 0 20px;
    font-style: italic;
    color: #666;
    font-size: 16px;
}

.pitch-actions {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 30px;
}

.pitch-actions .accept-pitch-btn {
    margin-right: 10px;
}

.jamnet-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
}

.modal-overlay {
    position: absolute; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
}

.modal-header {
    display: flex;
    justify-content: space-between;
}

.modal-content {
    position: relative;
    background: white; padding: 40px; border-radius: 20px;
    max-width: 950px; width: 95%; max-height: 90vh; 
    overflow-y: auto; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.close-modal {
    position: absolute; top: 20px; right: 20px;
    font-size: 32px; border: none; background: none; 
    cursor: pointer; color: #94a3b8;
}

.pricing-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 15px;
}

.price-card {
    border: 2px solid #f1f5f9; padding: 25px 15px; border-radius: 12px;
    text-align: center; cursor: pointer; transition: all 0.2s ease;
    display: flex; flex-direction: column; justify-content: space-between;
}

.price-card:hover {
    border-color: #007bff;
}

.tier-name { color: #64748b; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.pass-qty { display: block; font-size: 24px; font-weight: 800; color: #1e293b; margin: 8px 0; }
.price { color: #059669; font-weight: 700; font-size: 18px; }
.tier-desc { font-size: 12px; color: #64748b; margin: 12px 0; line-height: 1.4; min-height: 40px; }

.back-link {
    background: none; border: none; color: #3b82f6; 
    cursor: pointer; font-weight: 600; display: flex; 
    align-items: center; gap: 8px; margin-bottom: 20px;
}