
:root {
    --primary: #6055cd;
    --primary-light: #eef1ff;
    --primary-dark: #4a41a7;
    --secondary: #6c757d;
    --success: #2ecc71;
    --success-light: #e8f8f0;
    --info: #3498db;
    --info-light: #e9f5fc;
    --warning: #f39c12;
    --warning-light: #fef5e7;
    --danger: #e74c3c;
    --danger-light: #fdedeb;
    --dark: #343a40;
    --light: #f8f9fa;
    --border-color: #e9ecef;
    --text-muted: #6c757d;
    --border-radius: 0.5rem;
    --transition: all 0.3s ease;
    --box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --box-shadow-lg: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}


body {
    background-color: #f2f4ff;
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: #2d2d2d;
}


.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    /* margin-bottom: 1.5rem; */
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ceceff;
    border-radius: 2px;
}

/* Container Styles */
.subscription-container {
    background-color: #fff;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 0.5rem;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    height: 100% !important;
}

.subscription-container::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
   
    background-color: rgba(96, 85, 205, 0.05);
    border-radius: 50%;
    transform: translate(50%, -50%);
    z-index: 0;
}

.subscription-container>* {
    position: relative;
    z-index: 1;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 1rem;
    text-align: center !important;
}

table thead {
    background: #ceceff !important;
    color: black !important;
    text-align: center !important;

    font-weight: 700;
}

table thead td {
    text-align: center !important;
    background: #ceceff !important;
}

table thead td:hover {
    text-align: center !important;
    background: #ceceff !important;
    color: black !important;
}

table thead th {
    padding: 1rem 0.75rem;
    font-weight: 600;
    font-size:1rem;
    letter-spacing: 0.5px;
    text-align: center !important;
    border: none;
}

table tbody tr {
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

table tbody tr:hover {
    background-color: var(--primary-light);
    transform: scale(1.01);
}

table tbody tr:last-child {
    border-bottom: none;
}
table  tr td:first-child {
   text-align: start !important;
   padding-left: 1rem;
}
table  tr td:last-child {
    font-weight: bolder !important;
   padding-right: 1rem !important;
}

table tbody td {
    padding: 0.875rem 0.75rem;
    font-size: 1rem;
    color: var(--dark);
    border: none;
}

table tbody tr.total-row {
    background-color: var(--primary-light);
    font-weight: 600;
    color: var(--primary-dark);
}

table tbody tr.total-row:hover {
    background-color: var(--primary-light);
    transform: none;
}

table tbody tr.category-header {
    background-color: #f8f9fa;
    font-weight: 600;
    color: var(--primary);
}

table tbody tr.category-header:hover {
    background-color: #f8f9fa;
    transform: none;
}

/* Responsive Table */
.table-responsive1 {
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Status Indicators */
.status-indicator {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.status-active {
    background-color: var(--success-light);
    color: var(--success);
}

.status-pending {
    background-color: var(--warning-light);
    color: var(--warning);
}

.status-closed {
    background-color: var(--danger-light);
    color: var(--danger);
}

/* Update Info */


.update-info i {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* Category Explanation */
.category-explanation {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.category-explanation h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.category-explanation h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
    margin: 0.5rem auto;
    border-radius: 2px;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-item {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.category-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-item:last-child {
    margin-bottom: 0;
}

.category-item strong {
    color: var(--primary);
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.5rem;
}

.category-item p {
    margin-bottom: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Number Formatting */

.positive-number {
    color: var(--success);
}

.zero-number {
    color: var(--text-muted);
    text-align: right;
}

/* Watermark and Copy Protection Styles */
.table-container {
    position: relative;
    overflow: hidden;
}

.table-container table {
    position: relative;
    z-index: 2;
}

/* Copy Protection */
.no-copy {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.no-copy::selection {
    background: transparent;
}

.no-copy::-moz-selection {
    background: transparent;
}

/* Single watermark for tables */
.subscription-container table {
    position: relative;
}

.subscription-container table::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 200px;
    height: 200px;
    background-image: url('/public/assets/logos/ipoji.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}
.subscription-container table.small-table::before {
    width: 150px;
    height: 150px;     
}

.subscription-container table * {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .subscription-container {
        padding: 0.5rem;
    }

    table thead th,
    table tbody td {
        padding: 0.5rem 0.375rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .category-item {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    table {
        font-size: 0.8rem;
    }
    .subscription-container {
        padding: 0.4rem;
    }
    table thead th,
    table tbody td {
        padding: 0.375rem 0.25rem;
    }
}

.container-fluid{
padding: 0 !important;
}

       /* Simple Disclaimer Styles */


.disclaimer-title {
color: #495057;
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 1.5rem;
padding-bottom: 0.75rem;
border-bottom: 2px solid #dee2e6;
}

.disclaimer-body {
color: #6c757d;
line-height: 1.8;
}

.disclaimer-body p {
margin-bottom: 1.25rem;
padding: 0;
text-align: justify;
}

.disclaimer-body p:last-child {
margin-bottom: 0;
}

.disclaimer-body strong {
color: #495057;
font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.disclaimer-simple {
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.disclaimer-title {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.disclaimer-body p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
}

@media (max-width: 576px) {
.disclaimer-simple {
  padding: 1rem;
  margin: 1rem 0;
}

.disclaimer-title {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.disclaimer-body p {
  margin-bottom: 0.875rem;
  font-size: 0.9rem;
}
}

