/* Custom CSS styles for the Service Booking App */

/* General styles */
body {
    font-family: 'Figtree', sans-serif;
}

/* Custom header styles */
.main-header {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Custom sidebar styles */
.main-sidebar {
    background-color: #343a40;
}

/* Custom content styles */
.content-wrapper {
    background-color: #f4f6f9;
}

/* Custom card styles */
.card {
    border-radius: 0.5rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    padding: 1rem;
}

/* Custom button styles */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

/* Custom table styles */
.table thead th {
    border-top: none;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
}

/* Custom form styles */
.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Custom footer styles */
.main-footer {
    background-color: #fff;
    border-top: 1px solid #dee2e6;
    color: #6c757d;
    padding: 1rem;
}

nav svg {
    height: 20px;
    width: 20px;
}