/* GLOBAL DEFAULTS */
body {
    background-color: #f4f7f6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* CUSTOM BUTTONS & ELEMENTS */
.btn-success {
    background-color: #198754;
    border-color: #198754;
}

.btn-success:hover {
    background-color: #157347;
    border-color: #146c43;
}

/* CARDS & CONTAINERS */
.card {
    border: none;
    border-radius: 10px;
    transition: transform 0.2s ease-in-out;
}

.card.shadow:hover {
    transform: translateY(-5px);
}

.card-header {
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}

/* FORMS */
.form-control:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

/* NAVBAR */
.navbar-brand img {
    transition: transform 0.3s ease;
}

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

/* UTILITIES */
.bg-success {
    background-color: #198754 !important;
}

.text-success {
    color: #198754 !important;
}

/* FOOTER */
footer {
    background-color: #fff !important;
}

/* ASP.NET GRIDVIEW STYLING */
.gridview-modern {
    width: 100%;
    background-color: #fff;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.gridview-modern th {
    background-color: #198754;
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.gridview-modern td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
}

.gridview-modern tr:hover {
    background-color: #f8f9fa;
}

/* MENU DASHBOARD STYLES */
.menu-card {
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    height: 100%;
    border: none !important;
    border-radius: 12px !important;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.menu-icon {
    font-size: 2.5rem;
    color: #198754;
    margin-bottom: 1rem;
}

.client-info-box {
    background-color: #f8f9fa;
    border-left: 5px solid #198754;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

/* COOKIE BANNER */
.cookie-banner {
    background-color: rgba(33, 37, 41, 0.95) !important;
    backdrop-filter: blur(5px);
    border-top: 2px solid #198754;
    transition: all 0.3s ease-in-out;
}

.cookie-banner span {
    font-size: 0.9rem;
    line-height: 1.4;
}