* {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f3f4f6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 20px; */
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.header-container {
    justify-content: center;
    margin-top: 2rem;
}

.col-md-8 {
    width: 66.66%;
    margin: 0 auto;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.microsite-title {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
}

.microsite-desc {
    color: #555;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: left;
}

.microsite-login {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.panel-heading {
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
    padding: 15px 20px;

}

.panel-body {
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group2,
.form-group3 {
    margin-bottom: 20px;
    width: 48%;
    display: inline-block;
}

.form-group2 {
    margin-right: 3%;
}

.control-label {
    color: #333;
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.form-control,
.form-control2 {
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #333;
    font-size: 14px;
    padding: 10px;
    width: 100%;
    transition: border-color 0.2s;
}

.form-control:focus,
.form-control2:focus {
    border-color: #66afe9;
    outline: none;
}

Settings .required:after {
    content: " *";
    color: #e74c3c;
}

.text-sm {
    font-size: 12px;
}

.text-gray-600 {
    color: #666;
}

.panel-footer {
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
    padding: 15px 20px;
    text-align: center;
}

.btn {
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    text-align: center;
    transition: background-color 0.2s;
}

.btn-primary {
    background-color: #78c2c5;
    color: #fff;
    width: 100%;
}

.btn-primary:hover {
    background-color: #68b2b5;
}

.hide {
    display: none;
}

.alert {
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 15px;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.header-microsite {
    /* max-height: 80px;
    max-width: 100%; */
    height: 8rem;
}

.placetopay-logo-div {
    margin-top: 20px;
    text-align: right;
}

.placetopay-logo-img {
    height: 40px;
}

@media (max-width: 768px) {
    .col-md-8 {
        width: 100%;
    }

    .form-group2,
    .form-group3 {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 20px;
    }

    .header-microsite {
        height: 4rem;
    }
}

/*-----------------------*/
.header {
    background-color: #e0e0e0;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #999;
}

.header-title {
    font-size: 15px;
    font-weight: bold;
}

.points {
    display: flex;
    align-items: center;
    gap: 10px;
}

.points-value {
    font-size: 20px;
    font-weight: bold;
}

.icon {
    color: #1a73e8;
    font-size: 24px;
}

.license-info {
    background-color: #e0e0e0;
    padding: 10px 15px;
    font-size: 14px;
}

.financial-summary {
    background-color: #f0f0f0;
    display: flex;
    justify-content: space-between;
    padding: 15px;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    flex-wrap: wrap;
}

.financial-item {
    margin-right: 10px;
}

.total-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.filter-options {
    display: flex;
    padding: 20px;
    justify-content: space-around;
    background-color: #fff;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 5px;
}

.filter-option input[type="radio"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #999;
    border-radius: 50%;
    outline: none;
    margin-right: 5px;
}

.filter-option input[type="radio"]:checked {
    border: 2px solid #1a73e8;
    background-color: #fff;
    box-shadow: inset 0 0 0 3px #1a73e8;
}

.filter-label {
    color: #1a73e8;
    font-weight: bold;
}

.section-title {
    background-color: #a6c8e6;
    padding: 10px 15px;
    font-weight: bold;
    color: #fff;
    display: flex;
    justify-content: space-between;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
}

th, td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
    font-size: 12px;
}

th {
    background-color: #f2f2f2;
    position: sticky;
    top: 0;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

.action-btn {
    background-color: #a6c8e6;
    border: none;
    padding: 5px;
    border-radius: 3px;
    cursor: pointer;
}

.status-n {
    text-align: center;
    font-weight: bold;
}

.selected-filter {
    background-color: #e6f0fa;
}