.content-option {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    background: #FFFFFF;
    padding: 10px;
    border-radius: 20px;
    border: solid 2px #E2E0E091;
    margin-bottom: 10px;
}
.content-option{
    position: relative;
}
.default {
    position: absolute;
    right: 13px;
    background: #36B2891A;
    padding: 5px 30px;
    top: 15px;
    border-radius: 15px;
    color:#36B289;
    font-family: outfit;
}

.text-content {
    padding: inherit;
}

.text-content p.Card_Name {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.text-content p.Card_description {
    font-size: 15px;
    font-weight: 100;
    color: #8E8F94;
    margin: 0;
    font-family: 'Outfit-regular';
}

.content-option .icon {
    width: 60px;
}

/* View Details Button (Eye Icon) */
.view-details-btn {
    position: absolute;
    right: 48px;
    bottom: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #185B63;
    transition: all 0.3s ease;
    border-radius: 8px;
    z-index: 10;
}

.view-details-btn:hover {
    background: #185B6315;
    color: #30B876;
    transform: scale(1.1);
}

.view-details-btn svg {
    width: 20px;
    height: 20px;
}

/* Method Details Modal */
.method-details-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    font-family: 'Outfit', sans-serif;
}

.method-details-modal-content {
    background-color: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.method-details-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #E2E0E0;
}

.method-details-modal-header h2.modal_head {
    font-size: 24px;
    font-family: 'Outfit';
    font-weight: 600;
    color: #000000;
    margin: 0;
    border-left: solid 3px #185B63;
    padding-left: 10px;
}

.method-details-close-btn {
    background: transparent;
    border: none;
    font-size: 32px;
    color: #8E8F94;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    line-height: 1;
}

.method-details-close-btn:hover {
    background: #f0f0f0;
    color: #185B63;
}

.method-details-modal-body {
    padding: 30px;
}

.method-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.method-detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.method-detail-item.full-width {
    grid-column: 1 / -1;
}

.method-detail-item label {
    font-size: 14px;
    font-weight: 500;
    color: #5C5C5C;
    font-family: 'Outfit';
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-detail-item p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    font-family: 'Outfit';
    margin: 0;
    padding: 10px;
    background: #F8F9FA;
    border-radius: 8px;
    border-left: 3px solid #185B63;
}

/* Responsive Design */
@media (max-width: 768px) {
    .method-details-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .method-details-grid {
        grid-template-columns: 1fr;
    }

    .method-detail-item.full-width {
        grid-column: 1;
    }

    .method-details-modal-header {
        padding: 15px 20px;
    }

    .method-details-modal-body {
        padding: 20px;
    }

    .view-details-btn {
        right: 10px;
        padding: 6px;
    }
}