/* Custom styles for ECL Calculator */

/* Logo styles */
.navbar-brand img {
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.7));
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Footer logo styles */
footer img {
    filter: opacity(0.9);
}

/* Content wrapper */
.content-wrapper {
    min-height: 70vh;
}

/* Form controls */
.form-control:focus, .form-select:focus {
    border-color: #00a88f;
    box-shadow: 0 0 0 0.25rem rgba(0, 168, 143, 0.25);
}

/* Alert icon styles */
.alert-icon {
    margin-right: 8px;
}

/* Card hover effects */
.card {
    transition: all 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}