/* Gravost — Custom Styles */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #0d1117;
    color: #c9d1d9;
}

main {
    flex: 1;
}

/* Service cards */
.service-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
    border-color: #6366f1 !important;
}

.service-icon {
    transition: transform 0.2s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

/* Navbar brand */
.navbar-brand {
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

/* Table tweaks */
.table-dark {
    --bs-table-bg: #161b22;
}

/* Cards */
.card {
    border-radius: 0.75rem;
}

/* Form controls in dark mode */
.form-control:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

/* Tab styling */
.nav-tabs .nav-link {
    color: #8b949e;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.75rem 1.25rem;
}

.nav-tabs .nav-link.active {
    color: #6366f1;
    background: transparent;
    border-bottom-color: #6366f1;
}

.nav-tabs .nav-link:hover {
    color: #c9d1d9;
    border-bottom-color: #484f58;
}

/* Badge tweaks */
.badge {
    font-weight: 500;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Alert styling */
.alert {
    border-radius: 0.5rem;
}

/* Login card */
.card .input-group-text {
    border-color: #30363d;
}
