
.card-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.card-details-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    width: fit-content;
    min-width: 300px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.modal-header-info {
    flex: 1;
}

.modal-img {
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0;
    object-fit: cover;
}

.modal-title {
    text-align: left;
    margin-bottom: 5px;
}

.modal-subtitle {
    text-align: left;
    color: #666;
    margin-bottom: 0;
}

.modal-body {
    margin-top: 3rem;
}

.modal-description {
    line-height: 1.6;
    text-align: justify;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #555;
    transition: color 0.2s;
}

.close-button:hover {
    color: #000;
}
