/* Light Theme Styles - Override any dark theme styles */
html, body {
    background: #f8f9fa !important;
    background-color: #f8f9fa !important;
    background-image: none !important;
    color: #212529 !important;
    height: 100%;
    box-shadow: none !important;
    text-shadow: none !important;
}

#mainContainer, #mainContent, #login-page, .container-fluid {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

body {
    font-family: "myriad-pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex !important;
    flex-direction: column !important;
}

.navbar-fixed-top {
    background: #293033;
}

.title {
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left !important;
}

.title-left {
    flex-shrink: 0;
    min-width: 300px;
}

.title-right {
    flex: 1;
}

.title h2 {
    color: #4a4a4a;
    font-weight: 300;
    letter-spacing: 1px;
}

.title h2:first-child {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.title h2:nth-child(2) {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #3f7cd1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.title-description {
    color: #495057;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.tool-card, .kit-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.tool-card:hover, .kit-card:hover {
    background: #ffffff;
    border-color: #3f7cd1;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
}

.tool-card h3, .kit-card h3 {
    color: #3f7cd1;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.11);
}

.tool-card p, .kit-card p {
    color: #6c757d;
    font-size: 0.9rem;
    min-height: 3rem;
    line-height: 1.6;
}

.dc-btn {
    background: #3f7cd1;
    color: #ffffff;
    transition: all 0.3s ease;
    margin: 0.25rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    border: none;
    text-align: center;
}

.dc-btn:hover {
    background: #0052a3;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    text-decoration: none;
}

.dc-btn:focus {
    outline: 2px solid #3f7cd1;
    outline-offset: 2px;
}

.section-header {
    margin: 3rem 0 2rem 0;
    padding: 1.5rem 0;
    border-bottom: 3px solid #3f7cd1;
    background: linear-gradient(to right, rgba(0, 102, 204, 0.05), transparent);
}

.section-header h2, .section-header h3 {
    color: #4a4a4a;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.tools-grid, .kits-grid {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.tools-grid > div, .kits-grid > div {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

#mainContainer {
    padding-top: 80px;
}

.mastfoot {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: rgba(255, 255, 255, 0.7);
    margin-top: 3rem;
    font-size: 0.85rem;
}

.footer-text {
    padding: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .tools-grid > div, .kits-grid > div {
        max-width: 100%;
    }
    
    .title {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center !important;
    }
    
    .title-left {
        min-width: auto;
    }
    
    .title h2:nth-child(2) {
        font-size: 2rem;
        margin-bottom: 1rem;
    } 
}
