/* ========================================
   ADMIN COMMON STYLES
   Common CSS for all admin module pages
   ======================================== */

/* ========================================
   BASE & RESET
   ======================================== */
* {
    box-sizing: border-box;
}

/* ========================================
   LAYOUT & CONTAINERS
   ======================================== */
.admin-page {
    color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    box-sizing: border-box;
}

.users-page {
    color: #fff;
    padding: 20px;
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.page-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #fff;
}

.page-subtitle {
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-size: 14px;
}

.header-actions {
    display: flex;
    gap: 10px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-refresh {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
    padding: 0;
}

.btn-refresh span {
    display: none;
}

.btn-refresh:hover {
    background: rgba(255,255,255,0.15);
}

.btn-add {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-add:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102,126,234,0.4);
}

.btn-back {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.btn-cancel {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-cancel:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.btn-save {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-save:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102,126,234,0.4);
}

.btn-save:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-add-detail {
    background: rgba(255,255,255,0.05);
    border: 1px dashed rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.6);
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 5px;
}

.btn-add-detail:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.btn-remove-detail {
    background: rgba(245,87,108,0.1);
    border: 1px solid rgba(245,87,108,0.3);
    color: #f5576c;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-remove-detail:hover {
    background: rgba(245,87,108,0.2);
    border-color: rgba(245,87,108,0.5);
}

.btn-card-action {
    flex: 1;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    padding: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-card-action:first-child {
    border-right: 1px solid rgba(255,255,255,0.08);
}

.btn-card-action:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

.btn-card-action.view:hover {
    color: #4facfe;
}

.btn-card-action.edit:hover {
    color: #43e97b;
}

/* ========================================
   FILTER & SEARCH
   ======================================== */
.filter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 350px;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.5);
}

.search-box input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 12px 15px 12px 45px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-box input::placeholder {
    color: rgba(255,255,255,0.4);
}

.search-box input:focus {
    outline: none;
    border-color: rgba(102,126,234,0.5);
    background: rgba(255,255,255,0.08);
}

/* ========================================
   CARDS & GRIDS
   ======================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.data-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.data-card.recommended {
    border-color: rgba(102,126,234,0.5);
    background: rgba(102,126,234,0.05);
}

.data-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.data-card.recommended:hover {
    border-color: rgba(102,126,234,0.7);
}

.recommended-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6px 12px;
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.data-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px 0 20px;
}

.card-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.data-card .card-body {
    padding: 20px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #fff;
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.info-item i {
    width: 16px;
    color: rgba(255,255,255,0.4);
}

.info-item span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.info-item.description span {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.data-card .card-footer {
    display: flex;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-tag .currency {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
}

.price-tag .amount {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.price-tag .period {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

/* ========================================
   FORMS
   ======================================== */
.form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.form-container form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 0;
}

.form-card:hover {
    border-color: rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
}

.card-header-section {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.card-header-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.card-header-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #fff;
    text-align: left;
}

.card-header-section p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin: 0;
    text-align: left;
}

.card-header-section > div:not(.card-icon) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.card-content {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

.form-label .required {
    color: #f5576c;
}

.form-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 12px 15px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
    line-height: 1.5;
}

.form-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.form-input:focus {
    outline: none;
    border-color: rgba(102,126,234,0.5);
    background: rgba(255,255,255,0.08);
}

.form-input.valid {
    border-color: rgba(255,255,255,0.1);
}

.form-input.invalid {
    border-color: rgba(245,87,108,0.5);
    background: rgba(245,87,108,0.05);
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.5);
    font-weight: 600;
}

.form-input.with-icon {
    padding-left: 35px;
}

.form-select {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 12px 40px 12px 15px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 20px;
}

.form-select:focus {
    outline: none;
    border-color: rgba(102,126,234,0.5);
    background-color: rgba(255,255,255,0.08);
}

.form-select option {
    background: #1a1d2e;
    color: #fff;
    padding: 10px;
}

.form-select.valid {
    border-color: rgba(255,255,255,0.1);
}

.form-select.invalid {
    border-color: rgba(245,87,108,0.5);
    background-color: rgba(245,87,108,0.05);
}

.form-hint {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

.form-textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 15px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.form-textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.form-textarea:focus {
    outline: none;
    border-color: rgba(102,126,234,0.5);
    background: rgba(255,255,255,0.08);
}

.form-textarea.valid {
    border-color: rgba(255,255,255,0.1);
}

.form-textarea.invalid {
    border-color: rgba(245,87,108,0.5);
    background: rgba(245,87,108,0.05);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding-top: 10px;
}

/* ========================================
   VALIDATION
   ======================================== */
.validation-summary {
    background: rgba(245,87,108,0.1);
    border: 1px solid rgba(245,87,108,0.3);
    border-radius: 12px;
    padding: 15px 20px;
    color: #f5576c;
    margin-bottom: 10px;
}

.validation-summary ul {
    margin: 0;
    padding-left: 20px;
}

.validation-summary li {
    margin-bottom: 5px;
}

.validation-message {
    color: #f5576c;
    font-size: 12px;
}

/* ========================================
   SWITCH (Toggle)
   ======================================== */
.switch-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 8px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
    border-radius: 28px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.switch input:checked + .slider {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    border-color: transparent;
}

.switch input:checked + .slider:before {
    transform: translateX(22px);
}

.switch-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* ========================================
   CHECKBOX
   ======================================== */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.15);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 0;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkbox-title {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.checkbox-description {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* ========================================
   DETAILS LIST
   ======================================== */
.details-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 12px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.15);
}

.detail-item i.fa-grip-vertical {
    color: rgba(255,255,255,0.3);
    cursor: grab;
    font-size: 14px;
}

.detail-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    padding: 4px 8px;
    outline: none;
}

.detail-input::placeholder {
    color: rgba(255,255,255,0.4);
}

/* ========================================
   LOADING & EMPTY STATES
   ======================================== */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: rgba(255,255,255,0.6);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.empty-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 20px;
    margin: 0 0 10px 0;
    color: #fff;
}

.empty-state p {
    color: rgba(255,255,255,0.5);
    margin: 0 0 20px 0;
}

.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: rgba(255,255,255,0.6);
}

/* ========================================
   TABLES
   ======================================== */
.users-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
}

.table-responsive {
    overflow-x: auto;
}

.users-table {
    width: 100%;
    border-collapse: collapse;
}

.users-table thead {
    background: rgba(255,255,255,0.05);
}

.users-table th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.users-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.users-table tbody tr {
    transition: all 0.2s ease;
}

.users-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}

.user-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
}

.badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
}

.badge-primary {
    background: rgba(102,126,234,0.2);
    color: #667eea;
}

.badge-secondary {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

.status-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.active {
    background: rgba(67,233,123,0.2);
    color: #43e97b;
}

.status-badge.inactive {
    background: rgba(245,87,108,0.2);
    color: #f5576c;
}

.status-badge.deleted {
    background: rgba(120,120,120,0.35);
    color: rgba(255,255,255,0.75);
}

.users-table tr.row-deleted {
    opacity: 0.75;
}

.user-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.btn-user-action {
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85);
    cursor: pointer;
    transition: background 0.15s ease;
}

.btn-user-action:hover:not(:disabled) {
    background: rgba(255,255,255,0.12);
}

.btn-user-action:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.btn-user-action.danger {
    border-color: rgba(245,87,108,0.4);
    color: #f5576c;
}

.users-banner {
    padding: 10px 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    background: rgba(102,126,234,0.15);
    color: rgba(255,255,255,0.9);
}

.users-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
}

.users-filter input[type="checkbox"] {
    accent-color: #667eea;
}

.table-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-count {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* ========================================
   TENANT REQUIRED OVERLAY
   ======================================== */
.tenant-required-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 40px 20px;
}

.tenant-required-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 450px;
}

.tenant-required-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(245,87,108,0.2) 0%, rgba(240,147,251,0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.tenant-required-icon i {
    font-size: 45px;
    color: #f5576c;
}

.tenant-required-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #fff;
}

.tenant-required-card p {
    color: rgba(255,255,255,0.6);
    margin: 0 0 25px 0;
    line-height: 1.6;
}

.tenant-required-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    animation: bounce 2s infinite;
}

.tenant-required-arrow i {
    font-size: 28px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .admin-page {
        padding: 15px;
    }

    .users-page {
        padding: 15px;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-actions {
        width: 100%;
    }

    .btn-back {
        width: 100%;
        justify-content: center;
    }

    .btn-refresh {
        width: auto;
        padding: 10px 15px;
    }

    .btn-refresh span {
        display: inline;
        margin-left: 5px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .card-header-section {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    .card-header-text {
        align-items: flex-start;
        text-align: left;
    }

    .form-actions {
        flex-direction: column-reverse;
    }

    .btn-cancel, .btn-save {
        width: 100%;
        justify-content: center;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .search-box {
        max-width: none;
    }

    .filter-section {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .admin-page {
        padding: 10px;
    }

    .users-page {
        padding: 10px;
    }

    .page-title {
        font-size: 22px;
    }

    .page-subtitle {
        font-size: 13px;
    }

    .card-content {
        padding: 15px;
    }

    .card-header-section {
        padding: 15px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .checkbox-item {
        padding: 12px;
    }

    .detail-item {
        padding: 10px;
    }

    .price-tag .amount {
        font-size: 28px;
    }

    .users-table th,
    .users-table td {
        padding: 12px 15px;
        font-size: 13px;
    }
}

/* ========================================
   LOGIN PAGE STYLES
   Source: Security/Login.razor
   ======================================== */
.login-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.login-container {
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, rgba(15,16,24,1) 0%, rgba(25,28,40,1) 50%, rgba(35,40,55,1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
    overflow-y: auto;
}

.login-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    margin: auto;
}

.login-left {
    background: linear-gradient(135deg, rgba(15,16,24,1) 0%, rgba(30,32,45,1) 100%);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    min-height: 450px;
}

.login-left h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.login-left p {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.6;
}

.login-left .icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.login-left .icon-wrapper i {
    font-size: 45px;
    color: #fff;
}

.login-right {
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-right h3 {
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.8rem;
}

.login-right .subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.login-container .input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.login-container .input-wrapper .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 16px;
    z-index: 2;
    pointer-events: none;
}

.login-container .input-wrapper input {
    width: 100%;
    height: 52px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0 45px 0 48px;
    font-size: 15px;
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.login-container .input-wrapper input:focus {
    outline: none;
    border-color: rgba(15,16,24,0.8);
    box-shadow: 0 0 0 3px rgba(15,16,24,0.1);
}

.login-container .input-wrapper input::placeholder {
    color: #aaa;
}

.login-container .input-wrapper .toggle-password {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    z-index: 2;
    padding: 4px;
    font-size: 16px;
}

.login-container .input-wrapper .toggle-password:hover {
    color: rgba(15,16,24,1);
}

.login-container .validation-message {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
}

.btn-login {
    background: linear-gradient(135deg, rgba(15,16,24,1) 0%, rgba(40,45,60,1) 100%);
    border: none;
    border-radius: 10px;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
    margin-top: 10px;
}

.btn-login:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15,16,24,0.35);
}

.btn-login:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.login-container .alert-danger {
    background: #fff5f5;
    border: 1px solid #feb2b2;
    border-radius: 10px;
    padding: 12px 16px;
    color: #c53030;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.register-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.register-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.btn-register {
    background: transparent;
    border: 2px solid rgba(15,16,24,0.8);
    border-radius: 10px;
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(15,16,24,1);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: rgba(15,16,24,1);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .login-left {
        display: none !important;
    }
    .login-right {
        padding: 40px 30px;
    }
    .login-card {
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .login-right {
        padding: 30px 20px;
    }
    .login-right h3 {
        font-size: 1.5rem;
    }
    .login-card {
        border-radius: 15px;
    }
}

@media (max-height: 700px) {
    .login-container {
        padding: 15px;
    }
    .login-right {
        padding: 35px 30px;
    }
}

/* ========================================
   REGISTER PAGE STYLES
   Source: Security/Register.razor
   ======================================== */

.register-container {
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, rgba(15,16,24,1) 0%, rgba(25,28,40,1) 50%, rgba(35,40,55,1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
    overflow-y: auto;
}

.register-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    max-width: 1050px;
    width: 100%;
    margin: auto;
}

.register-left {
    background: linear-gradient(135deg, rgba(15,16,24,1) 0%, rgba(30,32,45,1) 100%);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.register-left h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.register-left p {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.6;
}

.register-left .icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.register-left .icon-wrapper i {
    font-size: 45px;
    color: #fff;
}

.register-right {
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.register-right h3 {
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.8rem;
}

.register-right .subtitle {
    color: #666;
    margin-bottom: 22px;
    font-size: 0.95rem;
}

.register-right .row {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    margin: 0 0 16px 0;
}

.register-right .row > [class*="col-"] {
    flex: 1;
    width: auto;
    max-width: none;
    padding: 0;
}

.register-container .input-wrapper {
    position: relative;
}

.register-container .input-wrapper .input-icon {
    position: absolute;
    left: 14px;
    top: 15px;
    color: #888;
    font-size: 15px;
    z-index: 2;
    pointer-events: none;
}

.register-container .input-wrapper input {
    width: 100%;
    height: 46px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0 45px 0 44px;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.register-container .input-wrapper input:focus {
    outline: none;
    border-color: rgba(15,16,24,0.8);
    box-shadow: 0 0 0 3px rgba(15,16,24,0.1);
}

.register-container .input-wrapper input::placeholder {
    color: #aaa;
}

.register-container .input-wrapper .toggle-password {
    position: absolute;
    right: 14px;
    top: 11px;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    z-index: 2;
    padding: 4px;
    font-size: 15px;
}

.register-container .input-wrapper .toggle-password:hover {
    color: rgba(15,16,24,1);
}

.register-container .validation-message {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 4px;
    display: block;
}

.btn-register-submit {
    background: linear-gradient(135deg, rgba(15,16,24,1) 0%, rgba(40,45,60,1) 100%);
    border: none;
    border-radius: 10px;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
    margin-top: 8px;
}

.btn-register-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15,16,24,0.35);
}

.btn-register-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.register-container .alert-danger {
    background: #fff5f5;
    border: 1px solid #feb2b2;
    border-radius: 10px;
    padding: 12px 16px;
    color: #c53030;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.register-container .alert-success {
    background: #f0fff4;
    border: 1px solid #9ae6b4;
    border-radius: 10px;
    padding: 12px 16px;
    color: #276749;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.login-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #e0e0e0;
}

.login-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.btn-login-link {
    background: transparent;
    border: 2px solid rgba(15,16,24,0.8);
    border-radius: 10px;
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(15,16,24,1);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-login-link:hover {
    background: rgba(15,16,24,1);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .register-left {
        display: none !important;
    }
    .register-right {
        padding: 35px 30px;
    }
    .register-card {
        max-width: 650px;
    }
}

@media (max-width: 576px) {
    .register-right {
        padding: 28px 20px;
    }
    .register-right h3 {
        font-size: 1.5rem;
    }
    .register-card {
        border-radius: 15px;
        max-width: 500px;
    }
    .register-right .row {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-height: 700px) {
    .register-container {
        padding: 15px;
    }
    .register-right {
        padding: 30px 35px;
    }
    .register-right .subtitle {
        margin-bottom: 16px;
    }
    .register-right .row {
        margin-bottom: 12px;
    }
}

/* ========================================
   ADMIN DASHBOARD STYLES
   Source: Dashboard/AdminDashboard.razor
   ======================================== */
.dashboard-page {
    color: #fff;
}

.dashboard-page .page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.dashboard-page .page-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #fff;
}

.dashboard-page .page-subtitle {
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-size: 15px;
}

/* Company Card */
.company-card {
    background: linear-gradient(135deg, rgba(102,126,234,0.15) 0%, rgba(118,75,162,0.15) 100%);
    border: 1px solid rgba(102,126,234,0.3);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
}

.company-header {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.company-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.company-info {
    flex: 1;
}

.company-info h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #fff;
}

.company-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.company-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.company-details span i {
    color: rgba(255,255,255,0.5);
}

.btn-edit-company {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-edit-company:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.stat-icon.events {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-icon.users {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stat-icon.images {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.stat-icon.storage {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-info {
    flex: 1;
}

.stat-label {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #fff;
}

.stat-change {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.stat-change.positive {
    color: #43e97b;
}

/* Secondary Stats */
.secondary-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card-secondary {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.stat-card-secondary:hover {
    background: rgba(255,255,255,0.05);
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 12px;
}

.stat-header i {
    font-size: 16px;
}

.stat-value-secondary {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

/* Quick Actions */
.quick-actions-section {
    margin-top: 10px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #fff;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.quick-action-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.quick-action-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(102,126,234,0.3);
    transform: translateY(-2px);
    color: #fff;
}

.action-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(102,126,234,0.2) 0%, rgba(118,75,162,0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #667eea;
}

.quick-action-card span {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* Dashboard Responsive */
@media (max-width: 1200px) {
    .stats-grid,
    .secondary-stats,
    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid,
    .secondary-stats {
        grid-template-columns: 1fr;
    }

    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-page .page-header {
        flex-direction: column;
    }

    .dashboard-page .page-title {
        font-size: 24px;
    }

    .stat-value {
        font-size: 26px;
    }

    .company-header {
        flex-direction: column;
        text-align: center;
    }

    .company-details {
        justify-content: center;
    }

    .btn-edit-company {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }

    .company-details {
        flex-direction: column;
        gap: 10px;
    }
}

/* ========================================
   EVENT FORM PAGE STYLES
   Source: Event/Event.razor
   ======================================== */
.event-form-page {
    color: #fff;
}

.event-form-page .page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.event-form-page .page-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #fff;
}

.event-form-page .page-subtitle {
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-size: 15px;
}

.event-form-page .form-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
}

.event-form-page .loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.event-form-page .loading-state p {
    color: rgba(255,255,255,0.6);
    margin-top: 15px;
}

.event-form-page .alert-error {
    background: rgba(245,87,108,0.15);
    border: 1px solid rgba(245,87,108,0.3);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: #f5576c;
}

.event-form-page .form-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.event-form-page .form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.event-form-page .section-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-form-page .section-title i {
    color: #667eea;
}

.event-form-page .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.event-form-page .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-form-page .form-group.full-width {
    grid-column: 1 / -1;
}

.event-form-page .form-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

.event-form-page .required {
    color: #f5576c;
}

.event-form-page .input-wrapper {
    position: relative;
}

.event-form-page .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
}

.event-form-page .textarea-wrapper .input-icon {
    top: 18px;
    transform: none;
}

.event-form-page .form-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 12px 15px 12px 45px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.event-form-page .form-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.event-form-page .form-input:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(102,126,234,0.1);
}

.event-form-page .form-textarea {
    resize: vertical;
    min-height: 100px;
}

.event-form-page .validation-message {
    color: #f5576c;
    font-size: 12px;
    margin-top: 5px;
}

.event-form-page .toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.event-form-page .toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    cursor: pointer;
}

.event-form-page .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.event-form-page .toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 26px;
    transition: all 0.3s ease;
}

.event-form-page .toggle-slider:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.event-form-page .toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.event-form-page .toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.event-form-page .toggle-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.event-form-page .form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.event-form-page .btn-cancel {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.event-form-page .btn-cancel:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.event-form-page .btn-save {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-form-page .btn-save:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102,126,234,0.4);
}

.event-form-page .btn-save:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .event-form-page .page-header {
        flex-direction: column;
    }

    .event-form-page .form-card {
        padding: 20px;
    }

    .event-form-page .form-grid {
        grid-template-columns: 1fr;
    }

    .event-form-page .form-actions {
        flex-direction: column;
    }

    .event-form-page .btn-cancel,
    .event-form-page .btn-save {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   EVENTS LIST PAGE STYLES
   Source: Event/Events.razor
   ======================================== */
.events-page {
    color: #fff;
}

.events-page .page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.events-page .page-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #fff;
}

.events-page .page-subtitle {
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-size: 15px;
}

.events-page .header-actions {
    display: flex;
    gap: 12px;
}

.events-page .loading-state,
.events-page .empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.events-page .loading-state p {
    color: rgba(255,255,255,0.6);
    margin-top: 15px;
}

.events-page .empty-icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.events-page .empty-icon i {
    font-size: 45px;
    color: rgba(255,255,255,0.5);
}

.events-page .empty-state h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px 0;
}

.events-page .empty-state p {
    color: rgba(255,255,255,0.5);
    margin: 0 0 25px 0;
}

.btn-add-empty {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-add-empty:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102,126,234,0.4);
    color: #fff;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

.event-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.event-card-header {
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.event-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.event-card-body {
    padding: 10px 14px;
}

.event-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 6px;
}

.event-details .detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 12.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-details .detail-item i {
    width: 14px;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.event-stats {
    display: flex;
    gap: 14px;
    padding-top: 6px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.event-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}

.event-stats .stat-item i {
    color: #667eea;
    font-size: 11px;
}

.event-card-footer {
    padding: 8px 14px;
    background: rgba(255,255,255,0.03);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.events-page .btn-action {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.events-page .btn-action.edit {
    background: rgba(102,126,234,0.2);
    color: #667eea;
}

.events-page .btn-action.edit:hover {
    background: rgba(102,126,234,0.3);
    color: #667eea;
}

.events-page .btn-action.upload {
    background: rgba(67,233,123,0.2);
    color: #43e97b;
}

.events-page .btn-action.upload:hover {
    background: rgba(67,233,123,0.3);
    color: #43e97b;
}

.events-page .btn-action.poster {
    background: rgba(168,85,247,0.2);
    color: #c084fc;
}

.events-page .btn-action.poster:hover {
    background: rgba(168,85,247,0.32);
    color: #e9d5ff;
}

.events-page .btn-action.delete {
    background: rgba(245,87,108,0.2);
    color: #f5576c;
}

.events-page .btn-action.delete:hover {
    background: rgba(245,87,108,0.3);
}

.events-footer {
    margin-top: 20px;
    padding: 15px 0;
    text-align: center;
}

.events-footer .total-count {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Events Modal */
.events-page .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    backdrop-filter: blur(5px);
}

.events-page .modal-container {
    background: rgba(25,28,40,0.98);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.events-page .modal-icon {
    width: 70px;
    height: 70px;
    background: rgba(245,87,108,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.events-page .modal-icon i {
    font-size: 30px;
    color: #f5576c;
}

.events-page .modal-container h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 15px 0;
}

.events-page .modal-container p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.events-page .modal-container strong {
    color: #fff;
}

.events-page .modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.events-page .btn-delete {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.events-page .btn-delete:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245,87,108,0.4);
}

@media (max-width: 768px) {
    .events-page .page-header {
        flex-direction: column;
    }

    .events-page .header-actions {
        width: 100%;
    }

    .events-page .btn-refresh,
    .events-page .btn-add {
        flex: 1;
        justify-content: center;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   UPLOAD IMAGES PAGE STYLES
   Source: Event/UploadImages.razor
   ======================================== */
.upload-images-page {
    color: #fff;
}

.upload-images-page .page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.upload-images-page .page-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #fff;
}

.upload-images-page .page-subtitle {
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-size: 15px;
}

.upload-images-page .loading-state,
.upload-images-page .error-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.upload-images-page .error-icon {
    width: 80px;
    height: 80px;
    background: rgba(245,87,108,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.upload-images-page .error-icon i {
    font-size: 35px;
    color: #f5576c;
}

.upload-images-page .error-state h3 {
    font-size: 20px;
    margin: 0 0 10px 0;
}

.upload-images-page .error-state p {
    color: rgba(255,255,255,0.6);
    margin: 0 0 20px 0;
}

.btn-back-link {
    color: #667eea;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-info-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
}

.event-info-header {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.event-info-card .event-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.event-info-card .event-details {
    flex: 1;
}

.event-info-card .event-details h3 {
    margin: 0 0 5px 0;
    font-size: 20px;
    font-weight: 600;
}

.event-info-card .event-details p {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.event-info-card .event-stats {
    display: flex;
    gap: 30px;
}

.event-info-card .stat {
    text-align: center;
}

.event-info-card .stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
}

.event-info-card .stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}

.upload-section {
    margin-bottom: 25px;
}

.upload-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
}

.upload-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.upload-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.upload-body {
    padding: 20px;
}

.file-input {
    display: none;
}

.upload-zone {
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-zone:hover,
.upload-zone.dragging {
    border-color: #667eea;
    background: rgba(102,126,234,0.1);
}

.upload-icon {
    width: 60px;
    height: 60px;
    background: rgba(102,126,234,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.upload-icon i {
    font-size: 24px;
    color: #667eea;
}

.upload-text {
    margin: 0 0 10px 0;
    font-size: 16px;
}

.upload-text span {
    color: #667eea;
    font-weight: 600;
}

.upload-hint {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.selected-files {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.selected-files h4 {
    margin: 0 0 15px 0;
    font-size: 14px;
    font-weight: 600;
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    max-height: 200px;
    overflow-y: auto;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.file-item i {
    color: #667eea;
}

.file-name {
    flex: 1;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-size {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.btn-remove {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 5px;
}

.btn-remove:hover {
    color: #f5576c;
}

.upload-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-clear {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.btn-upload {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.btn-upload:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.upload-message {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.upload-message.success {
    background: rgba(67,233,123,0.15);
    border: 1px solid rgba(67,233,123,0.3);
    color: #43e97b;
}

.upload-message.error {
    background: rgba(245,87,108,0.15);
    border: 1px solid rgba(245,87,108,0.3);
    color: #f5576c;
}

/* Upload Progress Styles */
.upload-progress-section {
    text-align: center;
    padding: 30px 20px;
}

.upload-progress-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.upload-progress-header i {
    font-size: 28px;
    color: #667eea;
}

.upload-progress-header h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.upload-progress-bar-container {
    width: 100%;
    height: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}

.upload-progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
    transition: width 0.3s ease;
}

.upload-progress-text {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0;
}

/* File Selection Header */
.file-selection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.file-count-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
}

.file-count-badge i {
    font-size: 16px;
}

.total-size {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-gallery {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-gallery:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    color: #fff;
}

.btn-upload-more {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-upload-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    color: #fff;
}

.btn-upload-first {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-upload-first:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    color: #fff;
}

/* Gallery Page */
.gallery-page {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-page .page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.images-section {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
}

.images-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.images-section .section-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.loading-images,
.no-images {
    padding: 40px;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    padding: 20px;
}

.image-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.image-placeholder {
    aspect-ratio: 1;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: rgba(255,255,255,0.3);
}

.image-info {
    padding: 10px;
}

.image-name {
    display: block;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

.image-size {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

/* Thumbnail styles for selected files */
.file-thumbnail {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

/* Thumbnail styles for uploaded images */
.image-thumbnail-container {
    aspect-ratio: 1;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-card:hover .image-thumbnail {
    transform: scale(1.05);
}

/* LightGallery Styles for Admin Images */
.images-grid .gallery-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.images-grid .gallery-link:hover .image-thumbnail {
    transform: scale(1.05);
}

.image-card.gallery-item {
    transition: all 0.3s ease;
}

.image-card.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

/* Custom LightGallery Styling for Admin */
.custom-lightgallery .lg-toolbar {
    background-color: rgba(26, 26, 46, 0.9);
}

.custom-lightgallery .lg-actions .lg-next,
.custom-lightgallery .lg-actions .lg-prev {
    background-color: rgba(102, 126, 234, 0.8);
    border-radius: 50%;
}

.custom-lightgallery .lg-actions .lg-next:hover,
.custom-lightgallery .lg-actions .lg-prev:hover {
    background-color: rgba(102, 126, 234, 1);
}

.custom-lightgallery .lg-sub-html {
    background: linear-gradient(transparent, rgba(26, 26, 46, 0.9));
    padding: 20px;
}

.custom-lightgallery .lg-sub-html h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.custom-lightgallery .lg-counter {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .event-info-header {
        flex-direction: column;
        text-align: center;
    }

    .event-info-card .event-stats {
        width: 100%;
        justify-content: center;
    }

    .upload-actions {
        flex-direction: column;
    }

    .images-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

/* ========================================
   USERS PAGE STYLES
   Source: Users/Users.razor
   ======================================== */
.users-page .tenant-required-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #667eea;
    animation: bounce 2s infinite;
}

.users-page .tenant-required-arrow i {
    font-size: 24px;
}

.users-page .tenant-required-arrow span {
    font-size: 14px;
    font-weight: 500;
}

.users-page .badge-superadmin {
    background: linear-gradient(135deg, rgba(245,87,108,0.2) 0%, rgba(240,147,251,0.2) 100%);
    color: #f5576c;
    border: 1px solid rgba(245,87,108,0.3);
}

.users-page .badge-admin {
    background: linear-gradient(135deg, rgba(102,126,234,0.2) 0%, rgba(118,75,162,0.2) 100%);
    color: #667eea;
    border: 1px solid rgba(102,126,234,0.3);
}

.users-page .badge-subscriber {
    background: linear-gradient(135deg, rgba(67,233,123,0.2) 0%, rgba(56,249,215,0.2) 100%);
    color: #43e97b;
    border: 1px solid rgba(67,233,123,0.3);
}

/* ========================================
   ADMIN TENANTS PAGE STYLES
   Source: Admin/AdminTenants.razor
   ======================================== */
.tenants-page {
    padding: 0;
}

.tenants-grid-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.tenants-grid-table {
    width: 100%;
    border-collapse: collapse;
}

.tenants-grid-table thead th {
    background: rgba(255, 255, 255, 0.08);
    padding: 14px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tenants-grid-table tbody td {
    padding: 14px 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tenant-row {
    cursor: pointer;
    transition: background 0.2s ease;
}

.tenant-row:hover {
    background: rgba(102, 126, 234, 0.1);
}

.tenant-row.selected {
    background: rgba(102, 126, 234, 0.15);
    border-left: 3px solid #667eea;
}

.tenant-row.selected td:first-child {
    padding-left: 17px;
}

.tenant-name-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tenant-name-cell .tenant-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 14px;
    flex-shrink: 0;
}

/* Tenant Detail Section */
.tenant-detail-section {
    margin-top: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.tenant-detail-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tenant-detail-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tenant-detail-header h2 i {
    color: #667eea;
    font-size: 16px;
}

/* Tabs */
.tenant-detail-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 24px;
}

.tab-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    margin-bottom: -1px;
}

.tab-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.tab-btn.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

.tab-count {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.tab-btn.active .tab-count {
    background: rgba(102, 126, 234, 0.3);
}

/* Tab Content */
.tenant-detail-content {
    padding: 0;
}

.tenant-detail-content .loading-state,
.tenant-detail-content .empty-state {
    padding: 40px 20px;
}

.tenant-detail-content .empty-state.compact {
    padding: 30px 20px;
}

.tenant-detail-content .empty-state.compact .empty-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.tenant-detail-content .empty-state.compact h3 {
    font-size: 16px;
}

.tenant-detail-content .empty-state.compact p {
    font-size: 13px;
}

/* Badge styles for tenants page */
.tenants-page .badge-superadmin {
    background: linear-gradient(135deg, rgba(245,87,108,0.2) 0%, rgba(240,147,251,0.2) 100%);
    color: #f5576c;
    border: 1px solid rgba(245,87,108,0.3);
}

.tenants-page .badge-admin {
    background: linear-gradient(135deg, rgba(102,126,234,0.2) 0%, rgba(118,75,162,0.2) 100%);
    color: #667eea;
    border: 1px solid rgba(102,126,234,0.3);
}

.tenants-page .badge-subscriber {
    background: linear-gradient(135deg, rgba(67,233,123,0.2) 0%, rgba(56,249,215,0.2) 100%);
    color: #43e97b;
    border: 1px solid rgba(67,233,123,0.3);
}

/* License badge in tenant grid */
.license-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(102, 126, 234, 0.15);
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.25);
    white-space: nowrap;
}

/* Action buttons in table rows */
.tenants-page .action-buttons {
    display: flex;
    gap: 6px;
    align-items: center;
}

.tenants-page .btn-action {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
}

.tenants-page .btn-action.edit {
    color: #667eea;
}

.tenants-page .btn-action.edit:hover {
    background: rgba(102,126,234,0.2);
    border-color: rgba(102,126,234,0.4);
}

.tenants-page .btn-action.license {
    color: #f093fb;
}

.tenants-page .btn-action.license:hover {
    background: rgba(240,147,251,0.2);
    border-color: rgba(240,147,251,0.4);
}

.tenants-page .btn-action.delete {
    color: #f5576c;
}

.tenants-page .btn-action.delete:hover {
    background: rgba(245,87,108,0.2);
    border-color: rgba(245,87,108,0.4);
}

/* ---- Admin Modal Overlay (shared for delete + license) ---- */
.admin-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(8px);
    animation: adminModalFadeIn 0.2s ease;
}

@keyframes adminModalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ---- Delete Confirmation Box ---- */
.admin-modal-box {
    background: linear-gradient(135deg, rgba(25, 28, 40, 0.98) 0%, rgba(35, 40, 55, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    animation: adminModalSlideIn 0.25s ease;
}

@keyframes adminModalSlideIn {
    from { transform: translateY(-20px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.admin-modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.admin-modal-icon.danger {
    background: rgba(245, 87, 108, 0.15);
}

.admin-modal-icon.danger i {
    font-size: 30px;
    color: #f5576c;
}

.admin-modal-box h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px 0;
}

.admin-modal-box p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 28px 0;
}

.admin-modal-box strong {
    color: #fff;
}

.admin-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.admin-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.admin-modal-btn.cancel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.admin-modal-btn.cancel:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.admin-modal-btn.danger {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    color: #fff;
}

.admin-modal-btn.danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 87, 108, 0.4);
}

.admin-modal-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.admin-modal-btn.primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.admin-modal-btn.primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ---- License Change Modal Panel ---- */
.license-modal-panel {
    background: linear-gradient(135deg, rgba(25, 28, 40, 0.98) 0%, rgba(35, 40, 55, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    width: 90%;
    max-width: 560px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    animation: adminModalSlideIn 0.25s ease;
}

.license-modal-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.license-modal-panel-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.license-modal-panel-header h3 i {
    color: #667eea;
    font-size: 18px;
}

.license-modal-panel-body {
    padding: 24px 28px;
    overflow-y: auto;
    flex: 1;
}

.license-modal-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.license-modal-subtitle strong {
    color: #fff;
}

/* License Plan Cards */
.license-plan-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.license-plan-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.license-plan-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
}

.license-plan-card.selected {
    background: rgba(102, 126, 234, 0.12);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 0 0 1px rgba(102, 126, 234, 0.3);
}

.license-plan-card.current {
    border-color: rgba(67, 233, 123, 0.3);
}

.license-plan-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.license-plan-radio .radio-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.license-plan-radio .radio-circle.checked {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}

.license-plan-radio .radio-circle.checked i {
    color: #fff;
    font-size: 10px;
}

.license-plan-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.license-plan-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.current-plan-badge {
    background: rgba(67, 233, 123, 0.15);
    color: #43e97b;
    border: 1px solid rgba(67, 233, 123, 0.3);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.license-plan-limits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-left: 36px;
}

.limit-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.limit-chip i {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}

.license-plan-card.selected .limit-chip {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.license-plan-card.selected .limit-chip i {
    color: rgba(102, 126, 234, 0.6);
}

/* License Modal Footer */
.license-modal-panel-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 18px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .tenants-grid-table thead th,
    .tenants-grid-table tbody td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .tenant-detail-tabs {
        padding: 0 12px;
    }

    .tab-btn {
        padding: 12px 14px;
        font-size: 13px;
    }

    .tenant-detail-header {
        padding: 16px;
    }

    .tenant-detail-header h2 {
        font-size: 16px;
    }

    .tenants-page .action-buttons {
        gap: 4px;
    }

    .tenants-page .btn-action {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .admin-modal-box {
        padding: 30px 24px;
        max-width: 360px;
    }

    .license-modal-panel {
        max-height: 90vh;
    }

    .license-modal-panel-header {
        padding: 18px 20px;
    }

    .license-modal-panel-body {
        padding: 18px 20px;
    }

    .license-modal-panel-footer {
        padding: 14px 20px;
        flex-direction: column;
    }

    .license-plan-limits {
        padding-left: 0;
    }

    .limit-chip {
        font-size: 11px;
        padding: 3px 8px;
    }
}

/* ========================================
   COMPANY PROFILE PAGE STYLES
   Source: Company/CompanyProfile.razor
   ======================================== */
.profile-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
}

.btn-dashboard {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-dashboard:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102,126,234,0.4);
    color: #fff;
}

.card-icon.contact {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.card-icon.location {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card-icon.notes {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.action-section {
    display: flex;
    gap: 15px;
    padding-top: 10px;
}

/* ========================================
   EMAIL TEMPLATE FORM STYLES
   Source: EmailTemplate/EmailTemplate.razor
   ======================================== */
.editor-container {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.editor-container .ql-toolbar {
    background: rgba(255,255,255,0.08);
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.editor-container .ql-toolbar .ql-stroke {
    stroke: rgba(255,255,255,0.7);
}

.editor-container .ql-toolbar .ql-fill {
    fill: rgba(255,255,255,0.7);
}

.editor-container .ql-toolbar .ql-picker {
    color: rgba(255,255,255,0.7);
}

.editor-container .ql-toolbar .ql-picker-options {
    background: #1a1d2e;
    border: 1px solid rgba(255,255,255,0.1);
}

.editor-container .ql-toolbar .ql-picker-label {
    color: rgba(255,255,255,0.7);
}

.editor-container .ql-toolbar button:hover .ql-stroke,
.editor-container .ql-toolbar button.ql-active .ql-stroke {
    stroke: #667eea;
}

.editor-container .ql-toolbar button:hover .ql-fill,
.editor-container .ql-toolbar button.ql-active .ql-fill {
    fill: #667eea;
}

.editor-container .ql-container {
    border: none;
    min-height: 250px;
    font-size: 14px;
}

.editor-container .ql-editor {
    color: #fff;
    min-height: 250px;
}

.editor-container .ql-editor.ql-blank::before {
    color: rgba(255,255,255,0.4);
    font-style: normal;
}

.editor-container .ql-snow .ql-tooltip {
    background: #1a1d2e;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.editor-container .ql-snow .ql-tooltip input[type=text] {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

/* ========================================
   EMAIL TEMPLATES LIST STYLES
   Source: EmailTemplate/EmailTemplates.razor
   ======================================== */
.filter-pills {
    display: flex;
    gap: 8px;
}

.filter-pill {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.filter-pill:hover {
    background: rgba(255,255,255,0.1);
}

.filter-pill.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: #fff;
}

.info-item.body-preview span {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.card-status.active {
    background: rgba(67,233,123,0.15);
    color: #43e97b;
}

.card-status.inactive {
    background: rgba(245,87,108,0.15);
    color: #f5576c;
}

/* ========================================
   LICENSE MASTER FORM STYLES
   Source: AdminLicenseMaster/AdminLicenseMaster.razor
   ======================================== */
.form-row.three-columns {
    grid-template-columns: repeat(3, 1fr);
}

.input-icon-left {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

.form-input.with-icon-left {
    padding-left: 42px;
}

@media (max-width: 992px) {
    .form-row.three-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .form-row.three-columns {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   LICENSE MASTERS LIST STYLES
   Source: AdminLicenseMaster/AdminLicenseMasters.razor
   ======================================== */
.limits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.limit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.03);
    padding: 12px;
    border-radius: 10px;
}

.limit-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.limit-info {
    display: flex;
    flex-direction: column;
}

.limit-value {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.limit-label {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}

.card-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(102,126,234,0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #667eea;
}

.card-badge i {
    font-size: 10px;
}

@media (max-width: 768px) {
    .limits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .limits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .limit-item {
        padding: 10px;
    }

    .limit-value {
        font-size: 16px;
    }
}

/* ========================================
   ADMIN SETTING STYLES
   Source: AdminSetting/AdminSetting.razor
   ======================================== */
.settings-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.settings-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.settings-card:hover {
    border-color: rgba(255,255,255,0.12);
}

.save-section {
    display: flex;
    justify-content: flex-end;
    padding-top: 10px;
}

/* ========================================
   WEBSITE CONTACTS STYLES
   Source: AdminWebsiteContact/AdminWebsiteContacts.razor
   ======================================== */
.card-badge.reason {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(79,172,254,0.15);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    color: #4facfe;
    text-transform: capitalize;
}

.card-badge.reason i {
    font-size: 10px;
}

.info-item.message-preview span {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Contact Modal */
.contacts-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.contacts-modal-container {
    background: linear-gradient(135deg, rgba(25,28,40,0.98) 0%, rgba(35,40,55,0.98) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.modal-title-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.modal-title-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #fff;
}

.modal-title-section p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.modal-close {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255,255,255,0.15);
}

.modal-body {
    padding: 25px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.modal-body .detail-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
}

.modal-body .detail-item label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-body .detail-item span {
    font-size: 14px;
    color: #fff;
}

.message-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message-section label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.message-content {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 15px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    white-space: pre-wrap;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: flex-end;
}

.btn-close-modal {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 10px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-close-modal:hover {
    background: rgba(255,255,255,0.15);
}

@media (max-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .contacts-modal-container {
        margin: 10px;
    }
}

@media (max-width: 480px) {
    .modal-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .modal-title-section {
        flex-direction: column;
    }

    .modal-close {
        position: absolute;
        right: 15px;
        top: 15px;
    }
}

/* ========================================
   ADMIN LAYOUT STYLES
   Source: Shared/AdminLayout.razor
   ======================================== */
.admin-wrapper {
    min-height: 100vh;
    background: var(--theme-gradient, linear-gradient(135deg, rgba(15,16,24,1) 0%, rgba(25,28,40,1) 50%, rgba(35,40,55,1) 100%));
}

/* Header Styles */
.admin-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: rgba(15,16,24,0.95);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    background: rgba(255,255,255,0.2);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 10;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.logo-text {
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    white-space: nowrap;
    line-height: 1;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-user-info {
    gap: 10px;
    padding: 8px 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.header-user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
}

.user-name {
    font-weight: 500;
    color: #fff;
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245,87,108,0.4);
    color: #fff;
}

.logout-btn i {
    font-size: 16px;
}

/* Tenant Selector Styles */
.tenant-selector {
    position: relative;
}

.tenant-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tenant-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102,126,234,0.4);
}

.tenant-name {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tenant-dropdown {
    background: rgba(25,28,40,0.98);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 8px;
    min-width: 220px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.tenant-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.tenant-dropdown .dropdown-item:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.tenant-dropdown .dropdown-item.active {
    background: linear-gradient(135deg, rgba(102,126,234,0.3) 0%, rgba(118,75,162,0.3) 100%);
    border: 1px solid rgba(102,126,234,0.5);
}

.tenant-dropdown .dropdown-item .fa-check {
    color: #43e97b;
}

/* Sidebar Styles */
.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: rgba(15,16,24,0.98);
    border-right: 1px solid rgba(255,255,255,0.1);
    z-index: 1001;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.sidebar-header .logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.close-sidebar-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.nav-list {
    list-style: none;
    padding: 0 15px;
    margin: 0;
}

.nav-item {
    margin-bottom: 2px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-link i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.nav-link span {
    font-weight: 500;
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.nav-item.active .nav-link {
    background: linear-gradient(135deg, rgba(102,126,234,0.2) 0%, rgba(118,75,162,0.2) 100%);
    color: #fff;
    border: 1px solid rgba(102,126,234,0.3);
}

/* Nav Group Header */
.nav-group-header {
    padding: 20px 15px 8px 15px;
    margin-top: 10px;
}

.nav-group-header span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
}

.sidebar-collapsed .nav-group-header {
    display: none;
}

/* Content Styles */
.admin-content {
    margin-left: 260px;
    padding: 85px 30px 30px 30px;
    min-height: 100vh;
    transition: all 0.3s ease;
}

/* Sidebar Collapsed State */
.sidebar-collapsed .admin-sidebar {
    width: 80px;
}

.sidebar-collapsed .admin-sidebar .logo-text,
.sidebar-collapsed .admin-sidebar .nav-link span {
    display: none;
}

.sidebar-collapsed .admin-sidebar .sidebar-header {
    justify-content: center;
    padding: 0 10px;
}

.sidebar-collapsed .admin-sidebar .sidebar-header .logo-section {
    flex: initial;
    justify-content: center;
}

.sidebar-collapsed .admin-sidebar .logo-icon {
    margin: 0 auto;
}

.sidebar-collapsed .admin-sidebar .nav-link {
    justify-content: center;
    padding: 12px;
}

.sidebar-collapsed .admin-sidebar .nav-link i {
    font-size: 18px;
}

.sidebar-collapsed .admin-content {
    margin-left: 80px;
}

/* Mobile Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.show {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }

    .mobile-sidebar-open .admin-sidebar {
        transform: translateX(0);
    }

    .mobile-sidebar-open .sidebar-overlay {
        display: block;
    }

    .admin-content {
        margin-left: 0;
        padding: 80px 15px 20px 15px;
    }

    .sidebar-collapsed .admin-content {
        margin-left: 0;
    }

    .admin-header .logo-section {
        display: flex !important;
    }

    .header-left {
        flex: 1;
        min-width: 0;
    }

    .logo-text {
        display: none;
    }

    .admin-header .logo-section .logo-text {
        display: inline;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .admin-header {
        padding: 0 15px;
    }

    .header-left {
        gap: 10px;
    }

    .admin-header .logo-section .logo-text {
        display: none;
    }

    .hamburger-btn {
        width: 36px;
        height: 36px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .close-sidebar-btn {
        display: none;
    }
}

/* Tenant Modal Styles */
.tenant-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.tenant-modal {
    background: linear-gradient(135deg, rgba(25,28,40,0.98) 0%, rgba(35,40,55,0.98) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.tenant-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tenant-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-close-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: rgba(245,87,108,0.3);
    color: #f5576c;
}

.tenant-modal-body {
    padding: 20px;
    max-height: calc(80vh - 80px);
    overflow-y: auto;
}

.tenant-list {
    display: grid;
    gap: 15px;
}

.tenant-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tenant-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.tenant-card.selected {
    background: rgba(102,126,234,0.15);
    border-color: rgba(102,126,234,0.5);
}

.tenant-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.tenant-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.tenant-info {
    flex: 1;
}

.tenant-info h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.tenant-email {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.selected-badge {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.tenant-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-left: 65px;
}

.tenant-details .detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    background: none;
    border: none;
    padding: 0;
}

.tenant-details .detail-item i {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

.no-tenants {
    text-align: center;
    padding: 40px;
    color: rgba(255,255,255,0.5);
}

.no-tenants i {
    font-size: 50px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.3);
}

/* License Button Styles */
.license-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.license-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.license-btn i {
    font-size: 14px;
}

/* License Modal Styles */
.license-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.license-modal {
    background: linear-gradient(135deg, rgba(25,28,40,0.98) 0%, rgba(35,40,55,0.98) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.license-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(102, 126, 234, 0.1);
}

.license-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.license-modal-header h3 i {
    color: #667eea;
}

.license-modal-body {
    padding: 25px;
    max-height: calc(85vh - 140px);
    overflow-y: auto;
}

.license-section {
    margin-bottom: 25px;
}

.license-section:last-child {
    margin-bottom: 0;
}

.license-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.license-section h4 i {
    color: #667eea;
    font-size: 14px;
}

/* Plan Card */
.plan-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.plan-name {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price {
    font-size: 24px;
    font-weight: 700;
    color: #4ade80;
}

.plan-price small {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
}

.plan-description {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.plan-features li i {
    color: #4ade80;
    font-size: 12px;
}

/* License Grid */
.license-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.license-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.license-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(102, 126, 234, 0.3);
}

.license-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border-radius: 10px;
    color: #667eea;
    font-size: 16px;
}

.license-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.license-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.license-value {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.license-modal-footer {
    padding: 15px 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: flex-end;
}

.btn-close-modal {
    padding: 10px 25px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close-modal:hover {
    background: rgba(255,255,255,0.15);
}

@media (max-width: 576px) {
    .license-grid {
        grid-template-columns: 1fr;
    }

    .license-modal {
        width: 95%;
        max-height: 90vh;
    }

    .plan-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* QR Code Section Styles */
.qr-code-section {
    margin-top: 25px;
}

.qr-code-section .section-description {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 20px;
}

.qr-code-container {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.qr-code-box {
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    width: 224px;
    height: 224px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qr-code-box img {
    display: block;
    width: 200px;
    height: 200px;
}

.qr-code-box canvas {
    display: block;
    width: 200px;
    height: 200px;
}

.qr-code-box img + canvas,
.qr-code-box canvas + img {
    display: none;
}

.qr-code-url {
    flex: 1;
    min-width: 280px;
}

.qr-code-url label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.url-copy-wrapper {
    display: flex;
    gap: 10px;
}

.url-copy-wrapper .url-input {
    flex: 1;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
}

.btn-copy {
    padding: 12px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.qr-poster-action {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.event-form-page .btn-poster {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(135deg, #a855f7 0%, #667eea 100%);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.event-form-page .btn-poster:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.35);
}

.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(17, 153, 142, 0.3);
    z-index: 9999;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .qr-code-url {
        width: 100%;
    }

    .url-copy-wrapper {
        flex-direction: column;
    }

    .btn-copy {
        width: 100%;
    }
}
