/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        width: 20% !important;
    }
}

@media (min-width: 1200px) {
    .display-6 {
        font-size: 1.7rem !important;
    }
}

/* Enable dropdown on hover */
.dropdown, .dropdown-center, .dropend, .dropstart, .dropup, .dropup-center {
    position: relative;
    display: inline;
}
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* =============================
   TOP NAVIGATION BAR
============================= */
.top-nav {
    background-color: #7AE2CF;
    padding: 10px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.top-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.nav-left,
.nav-center,
.nav-right {
    display: flex;
    align-items: center;
}

.nav-center {
    justify-content: center;
    flex: 1;
}

.nav-logo {
    height: 40px;
}

.nav-title {
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-align: center;
    width: 100%;
}

.nav-user {
    margin-right: 10px;
    color: white;
}
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.stat-card {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    border: 1px solid #2E6085:
}

.stat-card h3 {
    font-size: 18px;
    color: #2ecc71;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 28px;
    font-weight: bold;
    color: #2E6085;
}

.fa-graduation-cap, .fa-user-tie, .fa-square-poll-horizontal, .fa-discourse, .fa-users, fa-file-invoice-dollar{
    font-size: 30px;
    color: #2E6085;
    margin-bottom: 20px;
}
.action-buttons .btn{
    background: #2E6085;
    color:#fff;
}

/* =============================
   FORM + BUTTON STYLES (All Pages)
============================= */

.page-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.form-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #004080;
}

.input-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.input-field {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.input-field:focus {
    border-color: #2ecc71;
    outline: none;
    box-shadow: 0 0 5px rgba(46, 204, 113, 0.3);
}

/* BUTTONS */
.btn {
    background-color: #FFBD03;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5); /* Adjust shadow settings as desired */
    color: white;
    margin: 2px 0;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ff0000;
}

.btn-primary {
    background-color: #2ecc71;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.btn-primary:hover {
    background-color: #27ae60;
}

.btn-small {
    padding: 6px 12px;
    font-size: 13px;
}

/* =============================
   LOGIN PAGE STYLES
============================= */

.login-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /*background: linear-gradient(45deg, #2196F3, #21CBF3); */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-page .login-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 420px;
    padding: 25px;
    text-align: center;
    box-sizing: border-box;
}

.login-page .login-logo {
    margin-bottom: 15px;
}

.login-page .login-logo img {
    width: 130px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.login-page h2 {
    color: #333;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.login-page .input-group {
    margin-bottom: 18px;
    text-align: left;
}

.login-page .input-label {
    font-size: 13px;
    font-weight: 500;
    color: #555;
}

.login-page .input-field {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background-color: #f9fafb;
    font-size: 15px;
    transition: all 0.3s ease;
}

.login-page .input-field:focus {
    border-color: #2196F3;
    outline: none;
    box-shadow: 0 0 5px rgba(33, 150, 243, 0.5);
}
.btn-admin{
    background-color: #2196F3;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.btn-admin:hover{
    background-color: #7AE2CF;
}
.login-page .btn-primary {
    background-color: #2196F3;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.login-page .btn-primary:hover {
    background-color: #1976D2;
}

.login-page .forgot-password-link {
    color: #2196F3;
    text-decoration: none;
    font-size: 13px;
}

.login-page .forgot-password-link:hover {
    color: #1976D2;
}

.login-page .error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

.login-page .alert {
    background-color: #d4edda;
    color: #155724;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #c3e6cb;
}

.topnav {
    background-color: white;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.topnav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.topnav .logo img {
    height: 40px;
}

.topnav .nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    padding-top: 10px;
}

.topnav .nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: #333;
    padding: 8px 10px;
    transition: color 0.3s;
}

.topnav .nav-links a:hover {
    color: #007bff;
}

.topnav .profile {
    font-weight: 500;
    color: #555;
}
.dashboard-wrapper {
    padding: 30px 40px;
    background-color: #f9f9f9;
    min-height: 90vh;
}

.page-header h2 {
    font-size: 24px;
    margin-bottom: 30px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background-color: white;
    border: 1px solid  #2E6085;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.5);
    text-align: center;
}

.stat-card h3 {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 28px;
    color: #222;
    font-weight: bold;
}

.dashboard-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-admin {
    background-color: #007bff;
    color: white;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,5);
}

.btn-admin:hover {
    background-color: #0056b3;
}

.logout-button {
    margin-left: 15px;
    background-color: #2E6085;
    box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    color: white;
    padding: 5px 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.logout-button:hover{
    background-color: #ff0000;
}
.table-container {
    overflow-x: auto;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 15px;
    border: 1px solid #ddd;
}

.styled-table th, .styled-table td {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    text-align: left;
    vertical-align: middle;
}

.styled-table thead {
    background-color: #f3f4f6;
    font-weight: 600;
}

.styled-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.btn-small {
    padding: 6px 10px;
    font-size: 13px;
    margin: 0 2px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: white;
}

.btn-edit {
    background-color: #007bff;
}

.btn-delete {
    background-color: #dc3545;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 0.95rem;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.styled-table th,
.styled-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.styled-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.styled-table tr:nth-child(even) {
    background-color: #fafafa;
}

.styled-table tr:hover {
    background-color: #f1f1f1;
}

.btn-edit, .btn-delete {
    text-decoration: none;
    font-size: 1.1rem;
    margin-right: 10px;
    border: none;
    background: none;
    cursor: pointer;
}

.btn-edit:hover {
    color: green;
}

.btn-delete:hover {
    color: red;
}

.pagination-links {
    margin-top: 15px;
    text-align: right;
}
/* Container for the form */
.create-course-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Header styling */
.create-course-container h2 {
    font-size: 1.875rem; /* 30px */
    font-weight: 600;
    color: #4A4A4A;
    margin-bottom: 20px;
    border-bottom: 2px solid #E5E7EB;
    padding-bottom: 10px;
}

/* Label styling */
.create-course-container label {
    font-weight: 500;
    color: #4A4A4A;
    margin-bottom: 8px;
    display: inline-block;
}

/* Input fields */
.create-course-container input {
    width: 100%;
    padding: 12px;
    border: 1px solid #D1D5DB; /* Light gray border */
    border-radius: 8px;
    font-size: 1rem; /* 16px */
    background-color: #F9FAFB;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Focus state for input fields */
.create-course-container input:focus {
    border-color: #6366F1; /* Indigo border */
    box-shadow: 0 0 5px rgba(99, 102, 241, 0.2); /* Subtle shadow */
    outline: none;
}

/* Submit button */
.create-course-container button {
    padding: 12px 30px;
    background-color: #6366F1; /* Indigo */
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.create-course-container button:hover {
    background-color: #4F46E5; /* Darker indigo on hover */
}

/* Error message styling */
.create-course-container .error {
    color: #EF4444; /* Red color for errors */
    font-size: 0.875rem; /* 14px */
    margin-top: 5px;
}

/* Responsive grid styling */
@media (min-width: 768px) {
    .create-course-container .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.page-header h2 {
    font-size: 24px;
    color: #2c3e50;
}

.btn-back {
    background: #eee;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    border: 1px solid #ccc;
}

.alert-success {
    background: #e0f7e9;
    color: #278a4d;
    padding: 10px 15px;
    border: 1px solid #b7e1c2;
    border-radius: 4px;
    margin-bottom: 20px;
}

.form-card {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 30px;
    background: #fafafa;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.full-width {
    grid-column: span 2;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #444;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-footer {
    margin-top: 30px;
    text-align: right;
}

.btn-submit {
    background: #2E6085;
    color: white;
    padding: 10px 20px;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.btn-submit:hover {
    background: #0053b3;
}
.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff;
    font-size: 14px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.styled-table th, .styled-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.styled-table th {
    background-color: #f5f5f5;
    font-weight: bold;
    color: #333;
}

.styled-table tr:hover {
    background-color: #f9f9f9;
}

.btn-small {
    padding: 5px 10px;
    font-size: 13px;
    background-color: #3490dc;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-right: 5px;
}

.btn-small.danger {
    background-color: #e3342f;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-links a.active {
    border-bottom: 2px solid #2E6085; /* Blue underline for active */
    font-weight: bold;
}

.nav-links a:hover {
    border-bottom: 2px solid #aaa; /* Hover underline */
}

.back-button-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.btn-back {
    padding: 8px 16px;
    background-color: #2E6085;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #ccc;
    transition: background 0.2s ease;
}

.btn-back:hover {
    background-color: #ddd;
    color: #000;
}
.icon-img{
    width:30px;
        margin-bottom: 15px;

}
.currency-input {
    display: flex;
    align-items: center;
    gap: 5px;
}

.currency-symbol {
    padding: 8px 12px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.currency-input input[type="number"] {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 0 4px 4px 0;
    border-left: none;
}

/* in public/css/custom.css */
.action-btn {
    width: 200px;
    height: 50px;
    font-size: 16px !important;
    line-height: 30px !important;
}


/* Container */
.container {
    width: 70%;
    margin: 40px auto;
    background: #fff;
    padding: 25px 30px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    font-family: Arial, sans-serif;
}

/* Title */
.page-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #333;
}

.course-name {
    font-weight: bold;
}

/* Alerts */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
}

.alert ul {
    margin: 0;
    padding-left: 20px;
}

/* Table */
.results-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.results-table th,
.results-table td {
    border: 1px solid #ccc;
    padding: 12px 15px;
    text-align: left;
}

.results-table thead tr {
    background-color: #f2f2f2;
}

.results-table tbody tr:hover {
    background-color: #fafafa;
}

/* Input */
.results-table input[type="number"] {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #bbb;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.results-table input[type="number"]:focus {
    border-color: #306186;
    outline: none;
}

/* Form Actions */
.form-actions {
    text-align: right;
}

/* Save Button */
.btn-save {
    background-color: #306186;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-save:hover {
    background-color: #274f64;
}

/* custom.css */

/* Container styling */
.table-container {
    max-width: 1000px;
    margin: 60px auto;
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.table-container h4 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2c3e50;
    user-select: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: inset 0 -1px 0 #e2e8f0;
}

thead {
    background-color: #f5f8fa;
}

thead th {
    text-align: left;
    padding: 16px 15px;
    font-weight: 700;
    font-size: 1rem;
    color: #34495e;
    border-bottom: 3px solid #d6dce1;
    user-select: none;
}

tbody tr {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    height: 56px;
    transition: background-color 0.25s ease;
}

tbody tr:hover {
    background-color: #f0f5ff;
    cursor: pointer;
}

tbody td {
    padding: 14px 20px;
    vertical-align: middle;
    font-size: 1rem;
    color: #2c3e50;
}

/* Column widths */
td:first-child {
    width: 5%;
    font-weight: 600;
}

.col-course-name {
    width: 35%;
}

.col-course-level {
    width: 20%;
}

.col-enrolled {
    width: 20%;
}

td:last-child {
    width: 20%;
}

/* Pay Now button styling */
.btn-pay-now {
    background-color: #2d89ef;
    color: #fff;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 12px rgba(45, 137, 239, 0.4);
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
}

.btn-pay-now:hover {
    background-color: #1861c0;
    box-shadow: 0 6px 18px rgba(24, 97, 192, 0.6);
    color: white;
    text-decoration: none;
}

/* Icon inside button */
.btn-pay-now svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* No data fallback */
.no-data {
    text-align: center;
    color: #95a5a6;
    font-style: italic;
    padding: 25px 0;
    font-size: 1.1rem;
    user-select: none;
}

/* Partial nav */
.top-stepper {
   width: 80%;
    margin: 20px auto;
    text-align: center;
    padding-left: 80px !important;
}

.stepper-nav {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1000px;
}

.stepper-nav li {
    flex: 1;
}

.stepper-nav a {
    display: block;
    text-decoration: none;
    color: #333;
}

.step-number {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    background: #ddd;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 auto 5px;
    border-radius: 50%;
}

.step-label {
    font-size: 14px;
}

.top-stepper {
    padding: 10px;
    overflow-x: auto;
    border-radius: 8px;
}

.stepper-nav {
 
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.stepper-nav li {
    display: flex;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    margin-right: 15px;
}

.stepper-nav a {
    text-align: center;
    text-decoration: none;
    color: #000;
}

.stepper-nav a.disabled {
    pointer-events: none;
    opacity: 0.4;
}

.step-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    margin: auto;
    color: #fff;
    font-weight: bold;
    background-color: #bbb;
}

.step-label {
    font-size: 14px;
    margin-top: 5px;
}

/* Status Colors */
.stepper-nav .done .step-number {
    background-color: #28a745;
}

.stepper-nav .active .step-number {
    background-color: #007bff;
}

.stepper-nav .upcoming .step-number {
    background-color: #bbb;
}

.step-arrow {
   color: #2F6085;
    font-size: 40px;
    font-weight: bold;
    margin-top: -30px;
    margin-left: 20px;
    transition: color 0.3s ease;
}
.top-stepper {
    padding: 10px;
    border-radius: 8px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.stepper-nav {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.stepper-nav li {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 15px;
    transition: all 0.3s ease-in-out;
}

.stepper-nav a {
    text-decoration: none;
    color: #000;
    text-align: center;
    transition: transform 0.3s ease;
}

.stepper-nav a:hover {
    transform: scale(1.05);
}

.stepper-nav a.disabled {
    pointer-events: none;
    opacity: 0.4;
    cursor: not-allowed;
}

.step-number {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    background-color: #bbb;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    margin: auto;
    transition: background-color 0.4s ease;
}

.step-label {
    margin-top: 5px;
    font-size: 14px;
}

/* Step status */
.stepper-nav .done .step-number {
    background-color: #28a745;
}

.stepper-nav .active .step-number {
    background-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.stepper-nav .upcoming .step-number {
    background-color: #bbb;
}

/* Arrow */


.stepper-nav li.done + .step-arrow {
    color: #28a745;
}

.stepper-nav li.active + .step-arrow {
    color: #007bff;
}

/* ✅ Responsive */
@media (max-width: 768px) {
    .step-number {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
    }

    .step-label {
        font-size: 12px;
    }

    .step-arrow {
        margin: 0 5px;
        font-size: 18px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .step-label {
        font-size: 12px;
    }
    .step-number {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
    .step-arrow {
        margin: 0 5px;
    }
}


/* Responsive */
@media (max-width: 600px) {
    .table-container {
        margin: 30px 15px;
        padding: 25px 20px;
        max-width: 100%;
    }

    table, thead, tbody, tr, th, td {
        display: block;
    }

    thead tr {
        display: none;
    }

    tbody tr {
        margin-bottom: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        border-radius: 14px;
        padding: 15px 20px;
        height: auto;
        background-color: #fff;
    }

    tbody td {
        padding: 10px 0;
        text-align: right;
        font-size: 0.95rem;
        position: relative;
        padding-left: 55%;
        border-bottom: none;
    }

    tbody td::before {
        content: attr(data-label);
        position: absolute;
        left: 20px;
        width: 45%;
        font-weight: 700;
        color: #34495e;
        text-align: left;
        white-space: nowrap;
    }

    td:last-child {
        padding-bottom: 15px;
    }

    .btn-pay-now {
        padding: 7px 18px;
        font-size: 0.95rem;
    }
}

