body {
    font-family: Open-sans, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #1e1e1e;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #b0b0b0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.main-container-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    padding: 80px 2rem 2rem 2rem;
    box-sizing: border-box;
    text-align: center;
}

.container {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 0.5rem;
}

header h1 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 2rem;
    margin: 0;
    color: #ffffff;
}

header p {
    font-size: 1rem;
    color: #b0b0b0;
    margin: 0.5rem 0 0.5rem;
}

.logo {
    display: block;
    max-width: 200px;
    height: auto;
    margin: 10px auto;
}

.section {
    padding: 4rem 2rem;
    text-align: center;
}

.section:nth-child(odd) {
    background-color: #1e1e1e;
}

.section:nth-child(even) {
    background-color: #121212;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section>p {
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.feature,
.faq-item {
    max-width: 800px;
    margin: 2rem auto;
    text-align: left;
    background-color: #2d2d2d;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.feature h3,
.faq-item h3 {
    margin-top: 0;
    color: #3498db;
}

.feature i {
    margin-right: 10px;
    color: #3498db;
}

.login-container {
    text-align: center;
    padding: 0rem;
}

.linkedin-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #0A66C2;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s;
    margin: 1rem 0;
}

.linkedin-login-btn:hover {
    background-color: #004182;
}

.linkedin-login-btn i {
    font-size: 1.2rem;
}

.explanation {
    margin-top: 2rem;
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.5;
}

form {
    display: flex;
    flex-direction: column;
    margin-top: 0rem;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 0.2rem;
    display: block;
}

input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #444;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
    background-color: #2d2d2d;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

input:focus {
    border-color: #3498db;
    outline: none;
}

button {
    background-color: #3498db;
    color: #fff;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2980b9;
}

.footer {
    text-align: center;
    padding: 2rem;
    background-color: #1e1e1e;
    color: #b0b0b0;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.3);
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
    text-decoration: underline;
}

.copyright {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}



.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background-color: #444;
}

.divider-text {
    padding: 0 10px;
    color: #b0b0b0;
    font-size: 0.8rem;
}

.dashboard-content {
    margin-top: 2rem;
}

.status-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
    display: none;
}

.status-message.success {
    background-color: #1a3c27;
    color: #2ecc71;
    border-left: 4px solid #2ecc71;
    display: block;
}

.status-message.error {
    background-color: #4d2323;
    color: #e74c3c;
    border-left: 4px solid #e74c3c;
    display: block;
}

.form-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

form {
    flex: 1;
    max-width: 500px;
}

.reminder-box {
    flex: 1;
    background-color: #2d2d2d;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    max-width: 400px;
    margin-top: -2rem
}

.reminder-box h3 {
    margin-top: 0;
    color: #3498db;
    font-size: 1.2rem;
}

.reminder-box p {
    margin: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #b0b0b0;
}

.reminder-box i {
    color: #3498db;
    margin-bottom: 0.2rem;
}

.spacer {
    height: 2rem;
}

.logout-button {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 2em;
    color: #ffffff;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logout-button:hover {
    opacity: 1;
}

.sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #1e1e1e;
    color: white;
    padding: 20px 0;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.sidebar-header {
    padding: 0 20px 20px;
    border-bottom: 1px solid #34495e;
    margin-bottom: 20px;
}

.sidebar-tab {
    padding: 12px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.sidebar-tab:hover {
    background-color: #2d2d2d;
}

.sidebar-tab.active {
    background-color: #3498db;
}

.sidebar-tab i {
    margin-right: 10px;
}

.sidebar-section-title {
    padding: 10px 20px;
    font-size: 0.9em;
    text-transform: uppercase;
    color: #bdc3c7;
    margin-top: 20px;
}

.hackathon-tab {
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    position: relative;
}

.hackathon-tab:hover {
    background-color: #2d2d2d;
}

.hackathon-tab i {
    margin-right: 10px;
    color: #f1c40f;
}

.hackathon-tab.processing {
    opacity: 0.7;
    pointer-events: none;
    background-color: #34495e;
}

.hackathon-tab .fa-trophy {
    transition: opacity 0.2s ease-in-out;
}

.hackathon-tab.processing .fa-trophy {
    opacity: 0;
}

.hackathon-tab .spinner {
    display: none;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
}

.hackathon-tab.processing .spinner {
    display: inline-block;
    animation: fa-spin 1s infinite linear;
}

.main-content {
    margin-left: 250px;
    padding: 20px;
}

.hero-section {
    background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 2rem 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.logo-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: scale(1);
    z-index: -1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    color: #ffffff;
    line-height: 1.2;
}

.highlight {
    color: #3498db;
    position: relative;
    display: inline-block;
}

.highlight-red {
    color: #e49999;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(52, 152, 219, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stats-card {
    background-color: #1e1e1e;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #2d2d2d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #2d2d2d;
}

.stats-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.5rem;
}

.stats-body {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.stat-item {
    flex: 1;
    min-width: 150px;
    padding: 1.5rem;
    background-color: #2d2d2d;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-item.flagged {
    border-top: 4px solid #e74c3c;
}

.stat-item.warning {
    border-top: 4px solid #f39c12;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-item.flagged .stat-value {
    color: #e74c3c;
}

.stat-item.warning .stat-value {
    color: #f39c12;
}

.stat-label {
    font-size: 1rem;
    color: #b0b0b0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #0A66C2;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(10, 102, 194, 0.3);
}

.cta-button:hover {
    background-color: #004182;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 102, 194, 0.4);
}

.cta-button i {
    font-size: 1.4rem;
}

.nav-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #0A66C2;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.nav-login-btn:hover {
    background-color: #004182;
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.dashboard-header {
    margin-bottom: 2.5rem;
}

.user-greeting h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.user-greeting p {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin: 0;
}

.step {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: #2d2d2d;
    border-radius: 8px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.step.active {
    opacity: 1;
    background-color: #3498db;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.step-number {
    width: 30px;
    height: 30px;
    background-color: #1e1e1e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: bold;
    color: #ffffff;
}

.step.active .step-number {
    background-color: #1a5276;
}

.step-text {
    font-weight: 600;
}

.form-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.form-card,
.info-card {
    flex: 1;
    background-color: #1e1e1e;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #2d2d2d;
}

.form-card {
    max-width: 600px;
}

.info-card {
    max-width: 500px;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.card-header i {
    font-size: 1.5rem;
    color: #3498db;
    margin-right: 1rem;
}

.card-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.5rem;
}

.form-title {
    margin-top: 0;
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.form-title i {
    margin-right: 1rem;
    color: #f1c40f;
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 35%;
    transform: translateY(-50%);
    color: #7f8c8d;
}

input {
    padding-left: 40px !important;
}

.submit-btn {
    width: 100%;
    padding: 1rem !important;
    font-size: 1.1rem !important;
    font-weight: 600;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.process-item {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.process-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.process-icon.success {
    background-color: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.process-icon.warning {
    background-color: rgba(241, 196, 15, 0.2);
    color: #f1c40f;
}

.process-icon.primary {
    background-color: rgba(52, 152, 219, 0.2);
    color: #3498db;
}

.process-content h4 {
    margin: 0 0 0.3rem 0;
    color: #ffffff;
    font-size: 1.1rem;
}

.process-content p {
    margin: 0;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.verification-tips {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #2d2d2d;
}

.verification-tips h4 {
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-bottom: 1rem;
}

.verification-tips h4 i {
    margin-right: 0.8rem;
    color: #f1c40f;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    color: #b0b0b0;
}

.tips-list li i {
    margin-right: 0.8rem;
    color: #2ecc71;
    margin-top: 3px;
}

.sidebar-logo {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.hackathon-dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: #e0e0e0;
}

.hackathon-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #2d2d2d;
}

.hackathon-header h1 {
    font-size: 2.5rem;
    margin: 0 0 0.5rem 0;
    color: #ffffff;
}

.hackathon-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.last-fetched {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.last-fetched i {
    margin-right: 0.5rem;
    color: #3498db;
}

.devpost-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background-color: rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
}

.devpost-link:hover {
    background-color: rgba(52, 152, 219, 0.2);
    transform: translateY(-2px);
}

.hackathon-period {
    color: #b0b0b0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hackathon-period i {
    color: #f1c40f;
}

.hackathon-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: #1e1e1e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card.warning {
    border-top: 4px solid #f39c12;
}

.stat-card.error {
    border-top: 4px solid #e74c3c;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card.warning .stat-value {
    color: #f39c12;
}

.stat-card.error .stat-value {
    color: #e74c3c;
}

.stat-label {
    font-size: 0.95rem;
    color: #b0b0b0;
}

.data-section-card {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.data-section-card h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.project-item {
    padding: 1rem;
    border-radius: 6px;
    background-color: #2d2d2d;
    transition: all 0.3s ease;
}

.project-item:hover {
    background-color: #3d3d3d;
    transform: translateX(5px);
}

.project-item.missing-link {
    border-left: 4px solid #e74c3c;

}

.project-name {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.project-status {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.timeframe-info,
.handwritten-info {
    color: #b0b0b0;
    font-size: 0.95rem;
    padding: 0.5rem;
}

.fetch-btn {
    margin-top: 1.5rem;
    width: auto;
    padding: 1rem 2rem !important;
}

.fetch-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 6px;
    background-color: #2d2d2d;
    color: #b0b0b0;
    display: none;
}

.fetch-status.visible {
    display: block;
}

.fetch-status.success {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border-left: 4px solid #2ecc71;
}

.fetch-status.error {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-left: 4px solid #e74c3c;
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 768px) {
    .hackathon-stats {
        flex-direction: column;
    }

    .stat-card {
        min-width: 100%;
    }

    .hackathon-header h1 {
        font-size: 2rem;
    }
    .container {
        padding: 1.5rem;
    }

    .form-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .logo {
        padding: 100px 10px;
    }

    .main-form,

    .reminder-box {
        width: 100%;
        margin-top: 1rem;
    }

    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
        gap: 1rem;
    }
    .stats-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .stats-body {
        flex-direction: column;
    }

    .cta-button {
        padding: 14px 24px;
        font-size: 1.1rem;
    }    .dashboard-container {
        padding: 1rem;
    }
    
    .verification-steps {
        flex-direction: column;
    }
    
    .user-greeting h1 {
        font-size: 1.8rem;
    }
    .dashboard-container {
        padding: 1rem;
    }

    .verification-steps {
        flex-direction: column;
    }

    .user-greeting h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stats-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .hackathon-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .devpost-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .form-container {
        flex-direction: column;
    }

    .info-card {
        max-width: 90%;
        width: 100%;
    }
}

details {
    margin: 1rem 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #2d2d2d;
    transition: all 0.3s ease;
}

details[open] {
    background-color: #3d3d3d;
}

details summary {
    padding: 1rem;
    cursor: pointer;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    transition: background-color 0.3s ease;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary:after {
    content: '+';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

details[open] summary:after {
    content: '-';
}

details summary:hover {
    background-color: #3d3d3d;
}

details ul {
    padding: 0 1rem 1rem 1rem;
    margin: 0;
    list-style: none;
}

details li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #444;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

details li:last-child {
    border-bottom: none;
}

#flagged-projects-details {
    border-left: 4px solid #f39c12;
}

#flagged-projects-details summary {
    color: #f39c12;
}

#na-github-projects-details {
    border-left: 4px solid #e74c3c;
}

#na-github-projects-details summary {
    color: #e74c3c;
}

.project-entry-devpost {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.project-entry-devpost:hover {
    color: #2980b9;
    text-decoration: underline;
}

.project-entry-github {
    color: #2ecc71;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.project-entry-github:hover {
    color: #27ae60;
    text-decoration: underline;
}

.no-github-text {
    color: #b0b0b0;
    font-style: italic;
    font-size: 0.85rem;
}

.status-info,
.status-success,
.status-error {
    padding: 0.8rem 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.status-info {
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border-left: 4px solid #3498db;
}

.status-success {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border-left: 4px solid #2ecc71;
}

.status-error {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-left: 4px solid #e74c3c;
}

.projects-dropdown {
    background-color: #2d2d2d;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.projects-dropdown[open] {
    background-color: #3d3d3d;
}

.projects-dropdown summary {
    padding: 1rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    transition: background-color 0.3s ease;
}

.projects-dropdown summary::-webkit-details-marker {
    display: none;
}

.projects-dropdown summary .dropdown-arrow {
    transition: transform 0.3s ease;
}

.projects-dropdown[open] summary .dropdown-arrow {
    transform: rotate(180deg);
}

.projects-dropdown summary:hover {
    background-color: #3d3d3d;
}

.projects-dropdown .project-list {
    padding: 0 1rem;
    margin: 0;
    list-style: none;
    max-height: 300px;
    overflow-y: auto;
}

.projects-dropdown .project-item {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #444;
}

.projects-dropdown .project-item:last-child {
    border-bottom: none;
}

.missing-github-dropdown {
    border-left: 4px solid #e74c3c;
}

.missing-github-dropdown summary {
    color: #e74c3c;
}

.flagged-projects-dropdown {
    border-left: 4px solid #f39c12;
}

.flagged-projects-dropdown summary {
    color: #f39c12;
}

.project-name {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

.project-name:hover {
    text-decoration: underline;
}

.project-status {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.project-status a {
    color: #2ecc71;
    text-decoration: none;
}

.project-status a:hover {
    text-decoration: underline;
}

.status-info,
.status-success {
    padding: 0.8rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-info {
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border-left: 4px solid #3498db;
}

.status-success {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border-left: 4px solid #2ecc71;
}

.loading-details {
    padding: 1rem;
    text-align: center;
    color: #b0b0b0;
}