/* Custom styles for KCC */
:root {
  /* Bootstrap default theme colors */
  --bs-blue: #007BFF;
  --bs-indigo: #331A39;
  --bs-purple: #2F2453;
  --bs-pink: #d63384;
  --bs-red: #EC2B54;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;

  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;

  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #EC2B54;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;

  /* Additional grays */
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;

  /* Custom KCC additions */
  --bs-violet: #2F2453;
  --bs-red: #EC2B54;
  --bs-cyan: #03C7F1;
  --bs-blue-100: #007BFF;
  --bs-blue-200: #0056B3;
  --bs-purple: #331A39;
}

/* Add symmetric container padding */
.container {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
/* VANTA Background Setup */
#vanta-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* General improvements */
html, body {
    background: transparent; /* Let VANTA background show through */
    color: var(--bs-light);
    font-family: 'Dosis', sans-serif !important;
    min-height: 100vh;
}

h1 { font-weight:300;
   }

h4 {
    font-size: 1.5em;
}

.bg-episode {
    font-size: 1em !important;
    background-color: var(--bs-red) !important;
}

btn-download {
    background-color: var(--bs-yellow) !important;
}
btn-submit {
    background-color: var(--bs-blue) !important;
}

.intro_message {
    font-size: 1.2em
}
.uppercase, nav-item, btn, h1, h2, h3, h4, h5, navbar-brand {
  text-transform: uppercase !important
}

/* Navigation enhancements */
.navbar {
    background: rgba(51, 26, 57, 0.3) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999 !important;
    position: relative;
}

.navbar-brand {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95) !important;
}

.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8) !important;
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 1) !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.navbar-toggler {
    border-color: var(--bs-yellow) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffc107' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Ensure dropdown menus stay on top */
.navbar .dropdown-menu {
    z-index: 10000 !important;
}

.navbar-collapse {
    z-index: 9998 !important;
}

/* Hero section */
.hero-section {
    background: transparent;
    border-radius: 15px !important;
    text-align: center;
}

/* Card enhancements */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    background-color: white !important;
    backdrop-filter: blur(5px);
    color: black !important;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.card-body,
.card-title,
.card h4,
.card h5,
.card p,
.card small,
.card .text-muted {
    color: black !important;
}

.card .text-muted {
    color: #666 !important;
}

.badge.bg-red {
    background-color: var(--bs-red) !important;
    color: white !important;
}

.card-img-top {
    border-radius: 0.375rem 0.375rem 0 0;
}

/* Image container styling for event cards */
.card .col-md-4 img,
.card .img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0.375rem 0 0 0.375rem;
}

.card .col-md-4 {
    display: flex;
    align-items: center;
}

.card .col-md-4 .bg-secondary {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem 0 0 0.375rem;
}

/* Form enhancements */
.form-control, .form-select {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #495057;
}

.form-control:focus, .form-select:focus {
    background-color: #f8f9fa;
    border-color: var(--bs-primary);
    color: #495057;
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25);
}

.form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

/* Button enhancements */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

/* Streamlined Admin Tables */
.admin-table {
    background-color: white ;
    color: black ;
}

.admin-table th,
.admin-table td {
    background-color: white ;
    color: black !important;
    text-align: left !important;
    border-color: #dee2e6 ;
    vertical-align: middle;
    padding: 0.75rem;
}

.admin-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

.admin-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Past events styling */
.admin-table tbody tr.past-event {
    background-color: #a8c6fe !important;
}

.admin-table tbody tr.past-event:hover {
    background-color: #a8c6fe !important;
}

/* Sortable table headers */
.sortable-header {
    cursor: pointer;
    user-select: none;
    position: relative;
    padding-right: 1.5rem !important;
}

.sortable-header:hover {
    background-color: #e9ecef !important;
}

.sort-icon {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    font-size: 0.8rem;
}

.sort-icon.active {
    opacity: 1;
    color: #0d6efd;
}

/* Admin action buttons */
.admin-actions .btn {
    padding: 0.25rem 0.5rem;
    margin-right: 0.25rem;
}

.admin-actions .btn i {
    font-size: 0.875rem;
}

/* Admin stats cards */
.admin-stats .card {
    border: 1px solid #dee2e6;
    transition: box-shadow 0.15s ease-in-out;
}

.admin-stats .card:hover {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.admin-stats .card-body {
    text-align: left !important;
    padding: 1rem;
}

/* Admin page headers */
.admin-header {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.admin-header h2 {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Dark modals on bright backgrounds */
.modal-content {
    background-color: #212529 !important;
    color: #f8f9fa !important;
    border: 1px solid #495057 !important;
}

.modal-header {
    background-color: #212529 !important;
    color: #f8f9fa !important;
    border-bottom: 1px solid #495057 !important;
}

.modal-body {
    background-color: #212529 !important;
    color: #f8f9fa !important;
}

.modal-footer {
    background-color: #212529 !important;
    color: #f8f9fa !important;
    border-top: 1px solid #495057 !important;
}

.modal-title {
    color: #f8f9fa !important;
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Dark toast notifications */
.toast {
    background-color: #212529 !important;
    color: #f8f9fa !important;
    border: 1px solid #495057 !important;
}

.toast-header {
    background-color: #212529 !important;
    color: #f8f9fa !important;
    border-bottom: 1px solid #495057 !important;
}

.toast-body {
    background-color: #212529 !important;
    color: #f8f9fa !important;
}

/* Flash message styling - dark backgrounds with bright text */
.alert {
    color: #f8f9fa !important;
    border: 1px solid transparent;
}

.alert-success {
    background-color: #198754 !important;
    border-color: #146c43 !important;
}

.alert-danger, .alert-error {
    background-color: #dc3545 !important;
    border-color: #b02a37 !important;
}

.alert-warning {
    background-color: #fd7e14 !important;
    border-color: #fd7e14 !important;
}

.alert-info {
    background-color: #0dcaf0 !important;
    border-color: #3dd5f3 !important;
}

.alert-primary {
    background-color: #0d6efd !important;
    border-color: #0a58ca !important;
}

.alert-secondary {
    background-color: #6c757d !important;
    border-color: #565e64 !important;
}

.table-dark td .profile-avatar {
    text-align: center !important;
}

.table-dark thead th {
    background-color: #f8f9fa !important;
    color: black !important;
    border-bottom: 2px solid #dee2e6 !important;
}

.table-hover tbody tr:hover {
    background-color: #f8f9fa !important;
}

.table-hover tbody tr:hover td {
    background-color: #f8f9fa !important;
}

/* Badge styling */
.badge {
    font-size: 0.75em;
    padding: 0.35em 0.65em;
}

/* File upload area */
.upload-form {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* File selection display */
.file-info {
    background-color: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
    color: #212529 !important;
}

.file-info .text-success {
    color: #198754 !important;
    font-weight: 500;
}

.file-info .text-danger {
    color: #dc3545 !important;
    font-weight: 500;
}

/* Profile page enhancements */
.profile-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--bs-primary), var(--bs-info));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

/* Social media links */
.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.05);
}

/* Admin panel styling */
.admin-stats .card {
    background: linear-gradient(135deg, var(--bs-gray-800), var(--bs-gray-700));
}

/* Error page styling */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal enhancements */
.modal-content {
    background-color: var(--bs-gray-800);
    border: 1px solid var(--bs-gray-600);
}

.modal-header {
    border-bottom-color: var(--bs-gray-600);
}

.modal-footer {
    border-top-color: var(--bs-gray-600);
}

/* Fix z-index for delete modals */
.modal {
    z-index: 10050 !important;
}

.modal-backdrop {
    z-index: 10040 !important;
}

/* Ensure delete confirmation modals are on top */
.modal[id*="deleteModal"] {
    z-index: 10060 !important;
}

.modal[id*="deleteModal"] + .modal-backdrop {
    z-index: 10050 !important;
}

/* Fix modal backdrop blocking interactions */
.modal-backdrop.show {
    pointer-events: none !important;
}

.modal.show {
    pointer-events: auto !important;
}

.modal.show .modal-dialog {
    pointer-events: auto !important;
}

.modal.show .modal-content {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Alert styling */
.alert {
    border: none;
    border-radius: 0.5rem;
}

.alert-info {
    background-color: rgba(var(--bs-info-rgb), 0.1);
    color: var(--bs-info);
    border-left: 4px solid var(--bs-info);
}

.alert-warning {
    background-color: rgba(var(--bs-warning-rgb), 0.1);
    color: var(--bs-warning);
    border-left: 4px solid var(--bs-warning);
}

.alert-danger {
    background-color: rgba(var(--bs-danger-rgb), 0.1);
    color: var(--bs-danger);
    border-left: 4px solid var(--bs-danger);
}

.alert-success {
    background-color: rgba(var(--bs-success-rgb), 0.1);
    color: var(--bs-success);
    border-left: 4px solid var(--bs-success);
}

/* Footer */
footer {
    margin-top: auto;
    background-color: rgba(33, 37, 41, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero-section .display-4 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .btn-group .btn {
        padding: 0.25rem 0.5rem;
    }

    /* Reduce event card image height on mobile */
    .card .col-md-4 img,
    .card .col-md-4 .bg-secondary {
        min-height: 100px !important;
        max-height: 150px !important;
        height: 150px !important;
        border-radius: 0.375rem 0.375rem 0 0 !important;
    }
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bs-gray-800);
}

::-webkit-scrollbar-thumb {
    background: var(--bs-gray-600);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bs-gray-500);
}

/* Utility classes */
.text-gradient {
    background: linear-gradient(45deg, var(--bs-primary), var(--bs-info));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-gradient {
    border: 2px solid;
    border-image: linear-gradient(45deg, var(--bs-primary), var(--bs-info)) 1;
}

/* Styles for the Discord link */
.discord-link {
    color: var(--bs-cyan) !important;
    text-transform: uppercase !important;
    font-weight: bold !important;
}
/* Homepage Cards Styling */
.homepage-card {
    background-color: #fff;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;
}

.homepage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.card-img-wrapper {
    height: 180px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.homepage-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.homepage-card .card-body {
    padding: 1.25rem;
}

.homepage-card .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--bs-red) !important;
}

.homepage-card .card-text {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Upload Interface Styling - Consolidated from submit.html and submit_sample.html */

/* Upload Container Styling */
.upload-container {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.upload-container:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Drag & Drop Zone - Base Styles */
.upload-dropzone {
    position: relative;
    border: 3px dashed rgba(13, 110, 253, 0.3);
    border-radius: 0.5rem;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(13, 110, 253, 0.05);
    margin-bottom: 2rem;
    cursor: pointer;
}

.upload-dropzone:hover,
.upload-dropzone.drag-over {
    border-color: var(--bs-primary);
    background: rgba(13, 110, 253, 0.1);
    transform: translateY(-2px);
}

/* Sample-specific dropzone styling */
.upload-dropzone.sample-dropzone {
    border-color: rgba(25, 135, 84, 0.3);
    background: rgba(25, 135, 84, 0.05);
}

.upload-dropzone.sample-dropzone:hover,
.upload-dropzone.sample-dropzone.drag-over {
    border-color: var(--bs-success);
    background: rgba(25, 135, 84, 0.1);
}

.dropzone-content {
    pointer-events: none;
    position: relative;
    z-index: 1;
}

.dropzone-icon i {
    font-size: 3rem;
    color: var(--bs-primary);
    margin-bottom: 1rem;
    display: block;
}

.sample-dropzone .dropzone-icon i {
    color: var(--bs-success);
}

.dropzone-title {
    color: black;
    font-family: 'Dosis', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dropzone-subtitle {
    color: var(--bs-gray-600);
    margin-bottom: 1rem;
}

.browse-text {
    color: var(--bs-primary);
    font-weight: 600;
}

.sample-dropzone .browse-text {
    color: var(--bs-success);
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

/* File Preview */
.file-preview {
    background: var(--bs-gray-100);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 2rem;
    border: 1px solid var(--bs-gray-300);
}

.file-preview-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.file-icon i {
    font-size: 2rem;
    color: var(--bs-success);
}

.file-info {
    flex: 1;
}

.file-name {
    color: black;
    font-weight: 600;
    font-size: 1.1rem;
}

.file-size {
    color: var(--bs-gray-600);
    font-size: 0.9rem;
}

.file-remove {
    background: rgba(220, 53, 69, 0.2);
    border: none;
    color: var(--bs-danger);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.file-remove:hover {
    background: var(--bs-danger);
    color: white;
    transform: scale(1.1);
}

/* Upload Form Fields */
.upload-fields {
    margin-bottom: 2rem;
}

.upload-container .form-label {
    color: black;
    font-weight: 600;
    font-family: 'Dosis', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.upload-container .form-control {
    background: white;
    border: 1px solid var(--bs-gray-300);
    color: black;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.upload-container .form-control:focus {
    background: white;
    border-color: var(--bs-primary);
    color: black;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.upload-container .form-control::placeholder {
    color: var(--bs-gray-500);
}

/* Action Buttons */
.upload-actions {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.upload-btn {
    background-color: var(--bs-primary);
    border: none;
    color: white;
    font-family: 'Dosis', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    border-radius: 0.375rem;
    transition: all 0.15s ease-in-out;
    text-transform: uppercase;
}

.upload-btn:hover {
    background-color: #0056b3;
    transform: translateY(0);
    box-shadow: none;
}

.upload-btn.btn-success {
    background-color: var(--bs-success);
}

.upload-btn.btn-success:hover {
    background-color: #157347;
}

/* Circular Progress */
.circular-progress {
    position: relative;
    display: inline-block;
}

.progress-ring {
    width: 120px;
    height: 120px;
    transform: rotate(-90deg);
}

.progress-ring-circle-bg {
    fill: none;
    stroke: rgba(0, 0, 0, 0.1);
    stroke-width: 8;
}

.progress-ring-circle {
    fill: none;
    stroke: var(--bs-primary);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(13, 110, 253, 0.5));
}

.sample-progress .progress-ring-circle {
    stroke: var(--bs-success);
    filter: drop-shadow(0 0 10px rgba(25, 135, 84, 0.5));
}

.progress-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-percentage {
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
    font-family: 'Dosis', sans-serif;
}

.progress-label {
    font-size: 0.9rem;
    color: var(--bs-gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Upload Stats */
.upload-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    color: var(--bs-gray-600);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.stat-value {
    display: block;
    color: black;
    font-weight: 600;
    font-family: 'Dosis', sans-serif;
}

/* Success Animation */
.success-animation {
    position: relative;
    display: inline-block;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bs-success);
    position: relative;
    animation: scaleIn 0.5s ease-in-out;
}

.checkmark {
    width: 80px;
    height: 80px;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke: white;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) 0.2s forwards;
}

.checkmark-check {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    stroke: white;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

.success-title {
    color: black;
    font-size: 2rem;
    font-weight: 300;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Progress Container */
.upload-progress-container {
    background: white;
    border-radius: 0.5rem;
    padding: 3rem 2rem;
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    animation: slideInUp 0.5s ease-out;
}

.upload-success-container {
    background: white;
    border-radius: 0.5rem;
    padding: 3rem 2rem;
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    animation: slideInUp 0.5s ease-out;
}

/* Sample Guidelines styling */
.sample-guidelines {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 2rem;
}

.guideline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bs-gray-50);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--bs-gray-200);
}

.guideline-item:hover {
    background: var(--bs-gray-100);
    transform: translateY(-2px);
}

.guideline-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bs-success), #157347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guideline-icon i {
    color: white;
    font-size: 1.5rem;
}

.guideline-text h6 {
    color: black;
    margin: 0;
    font-family: 'Dosis', sans-serif;
    font-weight: 600;
}

.guideline-text small {
    color: var(--bs-gray-600);
}

/* Success screen community note */
.community-note {
    max-width: 500px;
    margin: 0 auto;
}

.note-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(25, 135, 84, 0.1);
    border: 1px solid rgba(25, 135, 84, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: left;
}

.note-icon {
    width: 50px;
    height: 50px;
    background: var(--bs-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.note-icon i {
    color: white;
    font-size: 1.3rem;
}

.note-content h6 {
    color: var(--bs-success);
    margin: 0 0 0.5rem 0;
    font-family: 'Dosis', sans-serif;
    font-weight: 600;
}

.note-content p {
    color: var(--bs-gray-700);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Upload Interface Animations */
@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Upload Interface */
@media (max-width: 768px) {
    .upload-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .upload-stats {
        gap: 1rem;
    }
    
    .dropzone-icon i {
        font-size: 2.5rem;
    }
    
    .circular-progress .progress-ring {
        width: 100px;
        height: 100px;
    }
    
    .progress-percentage {
        font-size: 1.3rem;
    }
    
    .guideline-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .note-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .note-content {
        text-align: center;
    }
}
