/* Custom styles for Lodgiserve */

/* General styles */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
}

/* Dashboard cards */
.card {
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

/* Sidebar customization */
.sidebar .nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    margin-bottom: 0.25rem;
}

.sidebar .nav-link:hover {
    background-color: rgba(13, 110, 253, 0.1);
}

.sidebar .nav-link.active {
    background-color: rgba(13, 110, 253, 0.15);
}

/* Tables */
.table th {
    font-weight: 600;
    color: #555;
}

/* Buttons */
.btn {
    border-radius: 0.25rem;
    font-weight: 500;
}

/* Auth pages */
.auth-card {
    margin: 0 auto;
}

/* Welcome page */
.hero-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.hero-title {
    font-weight: 700;
    color: #333;
}

.feature-card {
    height: 100%;
    transition: transform 0.2s;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0d6efd;
}
