body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-family: 'Roboto', Arial;
    color: #212529;
    min-height: 100vh;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== LAYOUT COMPONENTS ==================== */

/* Header Banner - Compact and Clean */
.header-banner {
    background: linear-gradient(135deg, #000000 0%, #434343 100%);
    padding: 0.75rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border-bottom: 3px solid #fff;
}

.header-banner h4 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

@media (max-width: 768px) {
    .header-banner h4 {
        font-size: 1rem;
    }
}

/* ==================== FORM STYLES ==================== */

/* Application Card - Optimized spacing */
.application-card {
    border: none;
    border-radius: 10px;
    margin-top: 0.5rem;
}

/* Form Section Title - Smaller and cleaner */
.form-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #dee2e6;
}

/* Form Controls - Compact */
.form-control, .form-select {
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.form-control:focus, .form-select:focus {
    border-color: #000;
    box-shadow: 0 0 0 0.15rem rgba(0,0,0,0.1);
}

.form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.4rem;
    font-size: 0.875rem;
}

.form-label i {
    font-size: 0.85rem;
}

/* Small text - better readability */
small.text-muted {
    font-size: 0.8rem;
    display: block;
    margin-top: 0.25rem;
}

/* ==================== NAVIGATION TABS ==================== */

.application-tabs {
    border: none;
    background: #f8f9fa;
    padding: 0.5rem 0.5rem 0 0.5rem;
    border-radius: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.25rem;
}

.application-tabs .nav-item {
    margin-bottom: 0;
    flex: 1 1 auto;
}

.application-tabs .nav-link {
    border: 1px solid transparent;
    border-radius: 6px 6px 0 0;
    color: #6c757d;
    font-weight: 500;
    padding: 0.6rem 0.5rem;
    transition: all 0.2s ease;
    background: #ffffff;
    font-size: 0.85rem;
    text-align: center;
}

.application-tabs .nav-link i {
    font-size: 1rem;
}

.application-tabs .nav-link:hover:not(.disabled) {
    border-color: #dee2e6;
    color: #000;
    transform: translateY(-1px);
}

.application-tabs .nav-link.active {
    background: #000;
    color: #fff !important;
    border-color: #000;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

.application-tabs .nav-link.disabled {
    background: #e9ecef;
    cursor: not-allowed;
    opacity: 0.6;
}

@media (max-width: 576px) {
    .application-tabs .nav-link {
        padding: 0.5rem 0.25rem;
        font-size: 0.75rem;
    }

    .application-tabs .nav-link i {
        font-size: 0.9rem;
    }
}

/* Tab Content - Reduced padding */
.application-content {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .application-content {
        padding: 1rem;
    }
}

/* ==================== BUTTONS ==================== */

.btn-dark {
    background: #000;
    border: 2px solid #000;
    padding: 0.6rem 2rem;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    color: #fff;
    font-size: 0.9rem;
}

.btn-dark:hover {
    background: #333;
    border-color: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: #fff;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid #000;
    color: #000;
    padding: 0.6rem 2rem;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.btn-outline-dark:hover {
    background: #000;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* Navigation Buttons - Compact */
.navigation-buttons {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

/* ==================== CARDS ==================== */

.card {
    border: none;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.card-body {
    border-radius: 10px;
}

.card-header {
    border-bottom: none;
}

/* ==================== ALERTS & VALIDATION ==================== */

.alert {
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.text-danger {
    font-size: 0.8rem;
    margin-top: 0.25rem;
    font-weight: 400;
}

/* ==================== LOADER/OVERLAY ==================== */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Progress Bar */
.progress {
    height: 2.5rem;
    border-radius: 8px;
    overflow: hidden;
    background-color: #212529;
}

.progress-bar {
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-bar-blackwhite {
    background-color: #fff;
    color: #212529;
}

/* ==================== UPLOAD STYLES ==================== */

.upload-card {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    transition: all 0.2s ease;
    padding: 1.5rem;
}

.upload-card:hover {
    border-color: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ==================== SUCCESS PAGE ==================== */

.success-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 4rem;
    max-width: 800px;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #000000 0%, #434343 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: scaleIn 0.5s ease-out 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.checkmark {
    font-size: 4rem;
    color: #fff;
    animation: checkmarkDraw 0.5s ease-out 0.4s both;
}

@keyframes checkmarkDraw {
    from {
        transform: scale(0) rotate(0deg);
    }
    to {
        transform: scale(1) rotate(360deg);
    }
}

.success-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.success-message {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.info-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #000;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.info-box h5 {
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.info-box ul {
    margin: 0;
    padding-left: 1.5rem;
    color: #495057;
}

.info-box li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

/* ==================== APPLICATION CLOSED PAGE ==================== */

.closed-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.closed-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 4rem;
    max-width: 700px;
    text-align: center;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.closed-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.closed-icon i {
    font-size: 3rem;
    color: #fff;
}

.closed-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #495057;
    margin-bottom: 1rem;
}

.date-box {
    background: linear-gradient(135deg, #000000 0%, #434343 100%);
    color: #fff;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.date-box h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.date-range {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.info-text {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ==================== ACCESS DENIED PAGE ==================== */

.denied-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.denied-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 4rem;
    max-width: 650px;
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}

.denied-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.denied-icon i {
    font-size: 3.5rem;
    color: #fff;
}

.denied-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 1rem;
}

.denied-message {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
}

/* ==================== ERROR PAGE ==================== */

.error-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.error-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 4rem;
    max-width: 700px;
    text-align: center;
}

.error-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.error-icon i {
    font-size: 4rem;
    color: #fff;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.request-id-box {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.dev-info {
    background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
    border-left: 4px solid #ffc107;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.dev-info h5 {
    color: #856404;
    font-weight: 700;
    margin-bottom: 1rem;
}

.dev-info p {
    color: #856404;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* ==================== TERMS PAGE ==================== */

.content-wrapper {
    padding: 0rem 0;
}

.terms-content {
    background: #ffffff;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.logo-container {
    position: sticky;
    top: 20px;
    text-align: center;
    padding: 2rem;
}

.logo-container img {
    max-width: 100%;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

.step-indicator {
    text-align: center;
}

.step-indicator .circle {
    transition: all 0.3s ease;
}

/* ==================== ARTIST INFO PAGE ==================== */

.fade-in {
    animation: fadeIn 0.3s ease-in;
}

/* ==================== UTILITY CLASSES ==================== */

.w-25 {
    width: 25% !important;
}

.textcontainer {
    max-width: 885px;
    margin: 0 auto;
    font-size: 12px;
    font-weight: bolder;
    font-family: 'Roboto', Arial;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 768px) {
    .form-section-title {
        font-size: 1.1rem;
    }

    .application-content {
        padding: 1rem;
    }

    .success-card,
    .closed-card,
    .denied-card,
    .error-card {
        padding: 1.5rem;
    }

    .success-title,
    .error-title,
    .denied-title {
        font-size: 1.5rem;
    }

    .row.g-4 {
        row-gap: 1rem !important;
    }

    .navigation-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .navigation-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .header-banner {
        padding: 0.5rem 0;
    }

    body {
        font-size: 0.875rem;
    }

    .form-label {
        font-size: 0.8rem;
    }

    .form-control, .form-select {
        font-size: 0.85rem;
        padding: 0.45rem 0.65rem;
    }
}

/* ==================== DIVIDER LINES ==================== */

.divider-line {
    width: 100px;
    height: 3px;
    background: #000;
    margin: 2rem auto;
}

.divider-line-gray {
    width: 80px;
    height: 3px;
    background: #dee2e6;
    margin: 2rem auto;
}

.divider-line-danger {
    width: 100px;
    height: 3px;
    background: #dc3545;
    margin: 2rem auto;
}

/* ==================== TERMS PAGE SPECIFIC ==================== */

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step-circle-active {
    background: #000;
    color: #fff;
}

.step-circle-inactive {
    background: #e9ecef;
    color: #6c757d;
}

.step-circle-completed {
    background: #000;
    color: #fff;
}

.step-line {
    flex: 1;
    height: 2px;
    background: #dee2e6;
    margin: 0 1rem;
}

.terms-heading {
    border-bottom: 3px solid #000;
    font-weight: 700;
}

.terms-navigation-end {
    text-align: right;
    padding-top: 1rem;
    border-top: 2px solid #e9ecef;
}

.terms-agreement-box {
    background: linear-gradient(135deg, #000 0%, #434343 100%);
    border: none;
    border-radius: 10px;
    padding: 0.5rem;
}

.terms-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 0.15rem;
}

.terms-checkbox-label {
    font-size: 1.1rem;
}

.terms-proceed-btn {
    min-width: 250px;
}

.terms-proceed-btn-disabled {
    pointer-events: none !important;
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

/* ==================== ORGANIZATION CARDS ==================== */

/* Organization Information Section */
.org-info-section {
    margin-bottom: 1.5rem;
}

/* Organization Card Styling */
.org-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.2s ease;
    cursor: pointer;
    height: 100%;
}

.org-card:hover {
    border-color: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.org-card.selected {
    border-color: #000;
    background-color: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.org-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.org-card-title i {
    color: #000;
}

.org-card-description {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .org-card {
        padding: 0.75rem;
    }

    .org-card-title {
        font-size: 0.95rem;
    }

    .org-card-description {
        font-size: 0.825rem;
    }
}
