body {
    padding: 0;
    margin: 0;
}

.card {
    color: black;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ccc; /* Outline for the card */
    border-radius: 10px; /* Optional: Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}

form{
    padding-top: 10px;
    padding-bottom: 10px;
}

.card:hover {
    background-color: #FFC100;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
    color: black; /* Text remains black */
    text-decoration: none;
}

.card-footer {
    background-color: #ffffff;
    border-top: 1px solid #ccc; /* Border at the top of the footer */
}

.email-contact {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    white-space: nowrap; 
    overflow: hidden;    
    text-overflow: ellipsis; 
}

.member-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.d-flex.align-items-center {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.ml-3 {
    margin-left: 15px; /* Memberikan jarak yang lebih sesuai */
}

.email-contact small {
    margin-bottom: 5px; /* Menambahkan jarak kecil antar baris email dan kontak */
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.form-inline {
    justify-content: flex-end;
}

.btn-primary {
    border-radius: 25px;
}

.search-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 1rem;
}

@media (max-width: 576px) {
    .search-bar .form-control {
        width: 100%;
        margin-bottom: 10px;
    }

    .search-bar .btn-search,
    .search-bar .btn-add {
        width: 100%;
        margin-bottom: 10px;
    }
}
