:root {
    --brand-green: #43982c;
    --brand-green-hover: #367c23;
    --brand-green-dark: #2f6b1d;
}

body {
    font-family: 'Inter', sans-serif;
}

.brand-panel {
    background: linear-gradient(160deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
}

.icon-circle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hover-green:hover {
    color: var(--brand-green) !important;
}

.custom-green-link {
    color: var(--brand-green);
    text-decoration: none;
}

.custom-green-link:hover {
    text-decoration: underline;
}

.custom-input {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 15px;
    transition: all 0.2s ease-in-out;
}

.custom-input:focus {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 4px rgba(67, 152, 44, 0.1);
    outline: none;
}

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

.btn-custom {
    background-color: var(--brand-green);
    color: white;
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
}

.btn-custom:hover {
    background-color: var(--brand-green-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 152, 44, 0.25);
}
