.pharmaplan-container {
    font-family: 'Segoe UI', sans-serif;
    padding: 20px;
}

.pharmaplan-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    padding: 20px;
    overflow-x: auto;
}

.pharmaplan-table {
    width: 100%;
    border-collapse: collapse;
    border: 0px;
}

.pharmaplan-table th {
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.pharmaplan-table td {
    font-size: 15px;
    color: #374151;
    padding: 12px;
    border-bottom: 1px solid #f3f4f6;
}

/* BOUTON */
.pharmaplan-button {
    background-color: #d7fbe2;
    color: #057a55;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pharmaplan-button:hover {
    background-color: #bff3d0;
}

/* PAGINATION */
.pharmaplan-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    font-size: 14px;
    color: #6b7280;
}

.pharmaplan-page-arrow {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #6b7280;
    cursor: not-allowed;
}

