/* GreenGo Technology - Custom Modern Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #2fb35d;
    --primary-hover: #26914b;
    --bg-light: #f8f9fa;
    --text-dark: #212529;
    --font-main: 'Inter', sans-serif;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* Custom Buttons */
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
}

/* Header Styling */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.logo-container {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text-main {
    font-weight: 900;
    font-size: 30px;
    color: var(--primary-color);
    letter-spacing: -1px;
    text-transform: none;
}

.logo-text-sub {
    font-size: 0.95rem;
    color: #495057;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Styling */
footer {
    padding: 2rem 0;
    color: #6c757d;
}

/* Auth Pages Styling */
.auth-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.auth-card .card-body {
    padding: 2.5rem;
}

/* Dashboard Styling */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.2s;
}

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

.table {
    border-radius: 8px;
    overflow: hidden;
}

.table thead th {
    background-color: #f1f3f5;
    border-bottom: none;
    font-weight: 600;
    color: #495057;
}
