/* Global Tradesx — Packages (card grid + admin request actions) */

.gtx-package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

.gtx-package-card {
    background: #131a2b;
    border: 1px solid #262f45;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.gtx-package-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 14px;
}

.gtx-package-fields {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    flex: 1;
}

.gtx-package-fields li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    padding: 6px 0;
    border-bottom: 1px solid #1c2436;
}

.gtx-package-field-label {
    color: #8b93a7;
}

.gtx-package-field-value {
    color: #c7cddb;
    font-weight: 600;
    text-align: right;
}

.gtx-buy-package-btn {
    margin-top: auto;
}

/* Admin request actions */

.gtx-btn-tiny {
    border: none;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    margin-right: 6px;
}

.gtx-btn-approve {
    background: rgba(46, 204, 113, 0.15);
    color: #7fe3a5;
}

.gtx-btn-approve:hover {
    background: rgba(46, 204, 113, 0.3);
}

.gtx-btn-reject {
    background: rgba(229, 72, 77, 0.15);
    color: #ff9fa2;
}

.gtx-btn-reject:hover {
    background: rgba(229, 72, 77, 0.3);
}

.gtx-btn-tiny:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Admin: Manage Packages create/edit form */

.gtx-pkg-admin-box {
    background: #131a2b;
    border: 1px solid #262f45;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.gtx-pkg-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px 18px;
}

.gtx-pkg-admin-grid .gtx-field-group {
    max-width: none;
    margin-bottom: 0;
}
