/* public/css/style.css */


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa; 
}

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

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.card {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease-in-out;
}

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

.table-hover tbody tr:hover {
    background-color: #f1f3f5;
}

.btn-action {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
    margin-left: 0.5rem;
    text-decoration: none;
    border-radius: 0.3rem;
}

.btn-edit {
    background-color: #e7f5ff;
    color: #1971c2;
    border: 1px solid #a5d8ff;
}

.btn-edit:hover {
    background-color: #d0ebff;
    color: #1864ab;
}

.btn-delete {
    background-color: #fff4e6;
    color: #d9480f;
    border: 1px solid #ffd8a8;
}

.btn-delete:hover {
    background-color: #ffe8cc;
    color: #c9400a;
}

.form-control:focus, .form-select:focus {
    border-color: #4c6ef5;
    box-shadow: 0 0 0 0.25rem rgba(76, 110, 245, 0.25);
}

.badge {
    font-weight: 600;
}

.profile-pic-sm {
        width: 40px;
        height: 40px;
        object-fit: cover;
        border-radius: 50%;
    }


.profile-pic-xs {
        width: 38px;
        height: 38px;
        object-fit: cover;
        border-radius: 50%;
        margin-right: 12px; 
    }


.profile-pic-lg {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 50%;
        border: 4px solid #dee2e6; 
    }
        

.member-item {
        display: flex;
        align-items: center;
    }