:root {
    --primary-color: #3EB5AC;
    --secondary-color: #E3476B;
    --accent-color: #FFBE4F;
    --dark-gray: #333;
    --light-gray: #f0f0f0;
    --white: #fff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    /*height:100;*/
}

.header {
    background-color: #f8f8f8;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    height: 60px;
}

.profile-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e0e0e0;
}

.title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-gray);
    text-align: center;
}

.name-section {
    text-align: center;
    padding: 20px 0;
    font-size: 28px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.content-area {
    padding: 20px;
    background-color: #e0e0e0;
}

.lead-card {
    background-color: #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    animation: fadeIn 0.5s ease-in-out;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.info-row {
    display: flex;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    background-color: #e0e0e0;
}

.info-label {
    font-weight: bold;
    width: 150px;
    display: flex;
    align-items: center;
    color: var(--dark-gray);
}

.info-value {
    flex-grow: 1;
    display: flex;
    align-items: center;
    color: #555;
}

.action-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 10px;
}

.action-btn {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.note-btn {
    background-color: #976363;
}

.call-btn {
    background-color: #976363;
}

.whatsapp-btn {
    background-color: #976363;
}

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

.navigation-btns {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.nav-btn {
    padding: 10px 30px;
    background-color: #d7b1b1;
    border: none;
    border-radius: 5px;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: #c9a0a0;
}

.footer {
    position: sticky; /* instead of sticky */
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000; /* make sure it stays above other elements */
}

.footer-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #777;
    text-decoration: none;
    font-size: 12px;
}

.footer-btn i {
    font-size: 24px;
    margin-bottom: 5px;
}

.footer-btn.active {
    color: var(--primary-color);
}

.modal-content {
    border-radius: 10px;
}

.modal-header {
    background-color: var(--primary-color);
    color: white;
    border-radius: 10px 10px 0 0;
}

.modal-footer {
    justify-content: center;
}

.modal-save-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 30px;
    border-radius: 5px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.card-container {
    overflow: hidden;
    position: relative;
}

.card-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.info-icon {
    margin-right: 10px;
    font-size: 20px;
    color: var(--secondary-color);
    width: 24px;
    text-align: center;
}

/* Media Queries */
@media (max-width: 768px) {
    .title {
        font-size: 20px;
    }
    
    .name-section {
        font-size: 24px;
        padding: 15px 0;
    }
    
    .info-label {
        width: 120px;
    }
}

@media (max-width: 576px) {
    .action-buttons {
        flex-direction: row;
    }
    
    .info-row {
        flex-direction: column;
    }
    
    .info-label {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .info-value {
        width: 100%;
    }
}