body {
    background-color: #F2FBF3;
    font-family: 'Cairo', sans-serif;
}

.manual-org-page .main-title {
    color: #25652C;
    font-weight: 800;
}

.btn-add,
.btn-add:link,
.btn-add:visited,
.btn-add:focus,
.btn-add:active {
    background-color: #f9a825;
    color: #fff !important;
    border: 1px solid #f9a825;
    border-radius: 8px;
    padding: 8px 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(249, 157, 39, 0.25);
}

.btn-add:hover {
    background-color: #e69b12;
    color: #fff !important;
    border-color: #e69b12;
    transform: translateY(-1px);
}

.btn-back-dashboard {
    background: transparent;
    color: #f99d27;
    border: 2px solid #f99d27;
    border-radius: 10px;
    padding: 8px 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-back-dashboard:hover {
    background: #f99d27;
    color: #fff;
    border-color: #f99d27;
}

.table-container {
    margin-top: 20px;
}

.manual-org-table {
    border-collapse: separate;
    border-spacing: 0 12px;
    width: 100%;
}

.manual-org-table thead th {
    border: none;
    color: #112D14;
    font-weight: 600;
    padding: 10px 20px;
    background-color: #F2FBF3;
}

.manual-org-table tbody tr {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease;
}

.manual-org-table tbody tr:hover {
    transform: scale(1.005);
}

.manual-org-table td {
    border: none !important;
    padding: 15px 20px !important;
    vertical-align: middle;
}

.manual-org-table tr td:first-child {
    border-radius: 0 15px 15px 0;
}

.manual-org-table tr td:last-child {
    border-radius: 15px 0 0 15px;
}

.status-badge {
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}

.status-active {
    background: #eaf8ed;
    color: #1b7a30;
}

.status-inactive {
    background: #fff2f2;
    color: #c53030;
}

.action-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
    border: 1px solid;
    transition: all 0.2s ease;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
}

.icon-view {
    color: #25652C;
    border-color: #25652C;
}

.icon-view:hover {
    background: #25652C;
    color: #fff;
}

.icon-edit {
    color: #F99D27;
    border-color: #F99D27;
}

.icon-edit:hover {
    background: #F99D27;
    color: #fff;
}

.icon-delete {
    color: #FF383C;
    border-color: #FF383C;
}

.icon-delete:hover {
    background: #FF383C;
    color: #fff;
}

@media (max-width: 768px) {
    .d-flex-mobile {
        flex-direction: column;
        align-items: stretch !important;
    }

    .manual-org-table thead {
        display: none;
    }

    .manual-org-table tbody tr {
        display: block;
        margin-bottom: 15px;
        border-radius: 15px;
        padding: 10px;
    }

    .manual-org-table td {
        display: block;
        text-align: center !important;
        padding: 6px !important;
    }

    .manual-org-table tr td:first-child,
    .manual-org-table tr td:last-child {
        border-radius: 15px;
    }
}
