html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* Custom styles */
.hero-section {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 4rem 0;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.feature-card {
    transition: transform 0.3s ease;
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    color: #2ecc71;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #2ecc71;
}

.form-control:focus {
    border-color: #2ecc71;
    box-shadow: 0 0 0 0.2rem rgba(46, 204, 113, 0.25);
}

.table thead {
    background-color: #2ecc71;
    color: white;
}

.btn-primary {
    background-color: #2ecc71;
    border-color: #2ecc71;
}

.btn-primary:hover {
    background-color: #27ae60;
    border-color: #27ae60;
}

.btn-outline-primary {
    color: #2ecc71;
    border-color: #2ecc71;
}

.btn-outline-primary:hover {
    background-color: #2ecc71;
    border-color: #2ecc71;
}

.text-primary {
    color: #2ecc71 !important;
}
