@charset "UTF-8";
body {
  padding: 0;
  margin: auto;
  font-size: 16px;
  background-color: #0d0d0d;
  color: #F2F4F3;
  box-sizing: border-box;
  font-family: Tahoma, sans-serif;
}

.login {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.creds {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(34, 51, 59, 0.4);
  padding: 20px 40px 20px 40px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.8) 0px 24px 60px 0px;
  scale: 100%;
}
.creds:hover, .creds :focus, .creds :active {
  animation: scaleUp 0.3s forwards;
}
.creds:not(:hover, :focus, :active) {
  animation: scaleDown 0.3s forwards;
}

.login-inputs {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-inputs input {
  margin: 0px 0 10px 0;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #192D35;
}
.login-inputs input:focus, .login-inputs input :active {
  outline: none;
  border: 1px solid #22333B;
}
.login-inputs textarea {
  font-family: Tahoma, sans-serif;
  font-size: 16px;
  margin: 0 0 20px 0;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #192D35;
  max-width: 600px;
  min-width: 300px;
  height: 100px;
}
.login-inputs textarea:focus, .login-inputs textarea :active {
  outline: none;
  border: 1px solid #22333B;
}
.login-inputs label {
  font-weight: bold;
  margin: 5px 0;
}

.login-logo {
  display: flex;
  align-items: center;
}
.login-logo img {
  height: 80px;
  width: 80px;
  margin: 0px 0 10px 0;
}

.btn {
  cursor: pointer;
  padding: 12px 24px;
  margin: 8px 4px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn:disabled:hover {
  transform: none;
}
.btn:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.btn:not(:disabled):active {
  transform: translateY(0);
}

.primary {
  border: 1px solid #192D35;
  background: linear-gradient(135deg, #22333B 0%, #0f171b 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(232, 122, 178, 0.3);
}
.primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #19252b 0%, #06090a 100%);
  box-shadow: 0 6px 20px rgba(232, 122, 178, 0.4);
}

.success {
  border: 1px solid rgba(76, 175, 80, 0.3);
  background: linear-gradient(135deg, #4caf50 0%, #3d8b40 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}
.success:hover:not(:disabled) {
  background: linear-gradient(135deg, #449d48 0%, #357a38 100%);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.warning {
  border: 1px solid #192D35;
  background: linear-gradient(135deg, red 0%, #cc0000 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}
.warning:hover:not(:disabled) {
  background: linear-gradient(135deg, #e60000 0%, #b30000 100%);
  box-shadow: 0 6px 20px rgba(244, 67, 54, 0.4);
}

.link {
  cursor: pointer;
  font-weight: bold;
  color: #98b6c4;
  transition: color 0.3s ease;
}
.link:hover {
  color: #22333B;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
  margin: 4px 2px;
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
.secondary:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.2);
}

.uc {
  text-transform: uppercase;
}

.span-item {
  font-size: 18px;
}

.pointer {
  cursor: pointer;
}

.ul {
  text-decoration: underline;
}

.bold {
  font-weight: bold;
}

.color-red {
  color: red;
}

.color-green {
  color: #22333B;
}

.text-center {
  text-align: center;
}

.date {
  font-family: monospace;
}

.f-18 {
  font-size: 18px;
}

@keyframes scaleUp {
  0% {
    scale: 100%;
  }
  100% {
    scale: 103%;
  }
}
@keyframes scaleDown {
  0% {
    scale: 103%;
  }
  100% {
    scale: 100%;
  }
}
@keyframes shake {
  10%, 90% {
    transform: translate(-48%, -50%);
  }
  20%, 80% {
    transform: translate(-52%, -50%);
  }
  30%, 50%, 70% {
    transform: translate(-48%, -50%);
  }
  40%, 60% {
    transform: translate(-52%, -50%);
  }
}
.shake {
  animation: shake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
header {
  display: flex;
  height: 50px;
  padding: 10px;
  background-color: rgba(34, 51, 59, 0.4);
  align-items: center;
  justify-content: center;
}

.menu-item {
  margin: 10px;
  padding: 15px;
  cursor: pointer;
}
.menu-item span {
  font-size: 18px;
  font-weight: bold;
}

.flexbox {
  display: flex;
}

.f-col {
  flex-direction: column;
}

.f-row {
  flex-direction: row;
}

.f-sb {
  justify-content: space-between;
}

.aic {
  align-items: center;
}

.jc-c {
  justify-content: center;
}

.g-10 {
  gap: 10px;
}

.p-10 {
  padding: 10px;
}

.m-10 {
  margin: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.ofx-auto {
  overflow-x: auto;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.m-0 {
  margin: 0;
}

.item-list {
  height: 20px;
  background-color: #192D35;
  padding: 10px 5px 10px 5px;
  border-bottom: 1px solid white;
}

.verification-item {
  margin: 0 0 35px 0;
  padding: 15px;
  border-bottom: 3px solid black;
}

.box-menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-size: 18px;
}

.stats {
  justify-content: center;
}

.stat-item {
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #263238;
  margin: 20px;
}

.stat {
  font-size: 14px;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.6); /* Black w/ opacity */
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

/* Modal Content/Box */
.modal-content {
  position: relative;
  background: linear-gradient(135deg, #192D35 0%, #14242b 100%);
  margin: 5% auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation-name: animatetop;
  animation-duration: 0.4s;
  overflow: hidden;
}

/* The Close Button */
.close {
  color: rgba(255, 255, 255, 0.7);
  float: right;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  padding: 8px 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 8px;
}
.close:hover, .close:focus {
  color: #F2F4F3;
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transform: rotate(90deg);
}

/* Modal Header */
.modal-header {
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(232, 122, 178, 0.1) 0%, rgba(136, 190, 243, 0.05) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.modal-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #F2F4F3;
  text-transform: none;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.modal-header .modal-username {
  font-size: 24px;
  font-weight: 700;
  color: #F2F4F3;
  line-height: 1.2;
}
.modal-header .modal-email {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.2;
}

/* Modal Body */
.modal-body {
  padding: 28px;
  max-height: 60vh;
  overflow-y: auto;
}
.modal-body::-webkit-scrollbar {
  width: 8px;
}
.modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}
.modal-body::-webkit-scrollbar-thumb {
  background: rgba(232, 122, 178, 0.5);
  border-radius: 4px;
}
.modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(232, 122, 178, 0.7);
}

/* Modal Footer */
.modal-footer {
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(136, 190, 243, 0.05) 0%, rgba(232, 122, 178, 0.1) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  gap: 12px;
}
.modal-footer .btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.modal-footer .btn.primary {
  background: linear-gradient(135deg, #e87ab2 0%, #e04f99 100%);
  color: #F2F4F3;
  box-shadow: 0 4px 12px rgba(232, 122, 178, 0.3);
}
.modal-footer .btn.primary:hover {
  background: linear-gradient(135deg, #e04f99 0%, #dd398c 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 122, 178, 0.4);
}
.modal-footer .btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
.modal-footer .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.error-message {
  padding: 12px 16px;
  background: rgba(255, 87, 87, 0.1);
  border: 1px solid rgba(255, 87, 87, 0.3);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.success-message {
  padding: 12px 16px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}

video {
  width: 100%;
  max-height: 300px;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

thead {
  background: #1d272c;
}

th, td {
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #263238;
}

.status-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}
.status-badge.status-new {
  background-color: rgba(232, 122, 178, 0.3);
  color: #e87ab2;
}
.status-badge.status-replied {
  background-color: rgba(136, 190, 243, 0.3);
  color: #88bef3;
}
.status-badge.status-solved {
  background-color: rgba(76, 175, 80, 0.3);
  color: #4caf50;
}

.support-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.form-group input[type=text],
.form-group input[type=email],
.form-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
  font-family: inherit;
}
.form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #22333B;
  background: rgba(255, 255, 255, 0.15);
}
.form-group input[type=text][readonly],
.form-group input[type=email][readonly],
.form-group textarea[readonly] {
  background: rgba(255, 255, 255, 0.05);
  cursor: not-allowed;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-inputs label {
  font-size: 18px;
  font-weight: bold;
}
.plan-inputs input {
  padding: 5px;
  margin: 10px;
  font-size: 16px;
}

.admin-dashboard {
  padding: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.spinner-loader {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #F2F4F3;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.admin-nav-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .admin-nav-menu {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

.admin-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  background: linear-gradient(135deg, #192D35 0%, #14242b 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-decoration: none;
  color: #F2F4F3;
  transition: all 0.3s ease;
  cursor: pointer;
}
.admin-nav-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border-color: #e87ab2;
  background: linear-gradient(135deg, #16272e 0%, #111e24 100%);
}
.admin-nav-item:active {
  transform: translateY(-2px);
}

.admin-nav-icon {
  font-size: 32px;
  margin-bottom: 8px;
  line-height: 1;
}

.admin-nav-text {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: #F2F4F3;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .admin-stats-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .admin-stats-grid {
    grid-template-columns: 1fr;
  }
}

.admin-stat-card {
  background: linear-gradient(135deg, #192D35 0%, #16272e 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.admin-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e87ab2 0%, #88bef3 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.admin-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}
.admin-stat-card:hover::before {
  opacity: 1;
}
.admin-stat-card.admin-stat-card-featured {
  border: 2px solid #e87ab2;
  background: linear-gradient(135deg, rgba(232, 122, 178, 0.1) 0%, #192D35 100%);
}
.admin-stat-card.admin-stat-card-featured::before {
  opacity: 1;
}
.admin-stat-card.admin-stat-card-live {
  border: 2px solid #88bef3;
  background: linear-gradient(135deg, rgba(136, 190, 243, 0.15) 0%, #192D35 100%);
  animation: pulse-glow 2s ease-in-out infinite;
}
.admin-stat-card.admin-stat-card-live::before {
  background: linear-gradient(90deg, #88bef3 0%, #5aa5ee 100%);
  opacity: 1;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(136, 190, 243, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(136, 190, 243, 0);
  }
}
.admin-stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.admin-stat-icon.admin-stat-icon-pulse {
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.admin-stat-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #F2F4F3;
  line-height: 1.2;
}

.admin-stat-percentage {
  font-size: 12px;
  font-weight: 600;
  color: #e87ab2;
  margin-top: 4px;
}

.filepond--root {
  width: 100%;
}

.thumb {
  height: 70px;
  width: auto;
}

.user-profile {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 12px 0;
}
.user-profile img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  object-fit: cover;
  transition: transform 0.3s ease;
}
.user-profile img:hover {
  transform: scale(1.05);
}

.user-profile-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.user-profile-details span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.user-profile-details .username {
  color: #F2F4F3;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 4px;
}
.user-profile-details .username:hover {
  text-decoration: underline;
  color: #e87ab2;
}
.user-profile-details .user-email {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  font-weight: 400;
}
.user-profile-details .gender-male {
  color: #88bef3;
}
.user-profile-details .gender-female {
  color: #fff3f5;
}
.user-profile-details .gender-couple {
  color: #e87ab2;
}
.user-profile-details .color-red {
  color: #ff8080;
}

.user-premium {
  background: linear-gradient(135deg, rgba(232, 122, 178, 0.1) 0%, rgba(136, 190, 243, 0.05) 100%);
  border: 1px solid rgba(232, 122, 178, 0.3);
  border-radius: 8px;
}

.no-owner {
  background: linear-gradient(135deg, rgba(255, 87, 87, 0.1) 0%, rgba(255, 152, 0, 0.05) 100%);
  border-left: 4px solid rgba(255, 87, 87, 0.5);
}
.no-owner:hover {
  background: linear-gradient(135deg, rgba(255, 87, 87, 0.15) 0%, rgba(255, 152, 0, 0.08) 100%);
}

.owner-deleted {
  background: linear-gradient(135deg, rgba(255, 87, 87, 0.1) 0%, rgba(255, 152, 0, 0.05) 100%);
  border-left: 4px solid rgba(255, 87, 87, 0.5);
}
.owner-deleted:hover {
  background: linear-gradient(135deg, rgba(255, 87, 87, 0.15) 0%, rgba(255, 152, 0, 0.08) 100%);
}

.owner-last-seen {
  font-size: 11px;
}
.owner-last-seen em {
  font-size: 10px;
  opacity: 0.7;
}

.user-plan {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 0;
}

.plan-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.plan-badge.premium-badge {
  background: linear-gradient(135deg, rgba(232, 122, 178, 0.3) 0%, rgba(136, 190, 243, 0.2) 100%);
  color: #e87ab2;
  border: 1px solid rgba(232, 122, 178, 0.5);
}
.plan-badge.free-badge {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.plan-item:last-child {
  border-bottom: none;
}
.plan-item.cancelled {
  color: #ff8080;
}

.plan-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-value {
  font-size: 14px;
  color: #F2F4F3;
  font-weight: 500;
}

.user-extra {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 0;
}

.stat-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.stat-group:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: 14px;
  color: #F2F4F3;
  font-weight: 600;
}

.user-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.meta-item {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}
.meta-item strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}
.meta-item em {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(232, 122, 178, 0.3);
}
.page-header h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: #F2F4F3;
}

.page-count {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.user-modal-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.user-section {
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.user-section:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.section-title {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 700;
  color: #F2F4F3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(232, 122, 178, 0.3);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.info-value {
  font-size: 14px;
  color: #F2F4F3;
  font-weight: 500;
}

.verification-controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.verification-controls .btn {
  flex: 1;
  min-width: 150px;
}
.verification-controls .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.verification-controls .btn:disabled:hover {
  transform: none;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  overflow: hidden;
}
table thead {
  background: linear-gradient(135deg, rgba(232, 122, 178, 0.15) 0%, rgba(136, 190, 243, 0.1) 100%);
}
table thead th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  color: #F2F4F3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(232, 122, 178, 0.3);
}
table thead th:first-child {
  border-top-left-radius: 12px;
}
table thead th:last-child {
  border-top-right-radius: 12px;
}
table tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}
table tbody tr:last-child {
  border-bottom: none;
}
table tbody tr td {
  padding: 16px 20px;
  vertical-align: top;
}

.users-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.search-container {
  display: flex;
  gap: 12px;
  align-items: center;
}
.search-container .search-input {
  flex: 1;
  max-width: 400px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #F2F4F3;
  font-size: 14px;
  transition: all 0.3s ease;
}
.search-container .search-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(232, 122, 178, 0.5);
  box-shadow: 0 0 0 3px rgba(232, 122, 178, 0.1);
}
.search-container .search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.search-container .search-btn,
.search-container .clear-search-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(232, 122, 178, 0.3) 0%, rgba(136, 190, 243, 0.2) 100%);
  border: 1px solid rgba(232, 122, 178, 0.5);
  border-radius: 8px;
  color: #F2F4F3;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.search-container .search-btn:hover,
.search-container .clear-search-btn:hover {
  background: linear-gradient(135deg, rgba(232, 122, 178, 0.4) 0%, rgba(136, 190, 243, 0.3) 100%);
  border-color: rgba(232, 122, 178, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 122, 178, 0.2);
}
.search-container .search-btn:active,
.search-container .clear-search-btn:active {
  transform: translateY(0);
}
.search-container .clear-search-btn {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}
.search-container .clear-search-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.pagination-container .pagination-info {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.pagination-container .pagination-controls {
  display: flex;
  gap: 12px;
}
.pagination-container .pagination-controls .pagination-btn {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #F2F4F3;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pagination-container .pagination-controls .pagination-btn:hover:not(.disabled) {
  background: linear-gradient(135deg, rgba(232, 122, 178, 0.3) 0%, rgba(136, 190, 243, 0.2) 100%);
  border-color: rgba(232, 122, 178, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 122, 178, 0.2);
}
.pagination-container .pagination-controls .pagination-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.verifications-page {
  padding: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.verifications-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.verifications-header h1 {
  margin: 0;
  color: #e87ab2;
  font-size: 28px;
  font-weight: 700;
}

.verifications-summary {
  display: flex;
  gap: 12px;
}

.verifications-badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}
.verifications-badge.verifications-badge-pending {
  background: rgba(232, 122, 178, 0.2);
  color: #e87ab2;
  border: 1px solid #e87ab2;
}
.verifications-badge.verifications-badge-history {
  background: rgba(136, 190, 243, 0.2);
  color: #88bef3;
  border: 1px solid #88bef3;
}

.verifications-section {
  margin-bottom: 32px;
}

.verifications-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 12px 0;
  margin-bottom: 16px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}
.verifications-section-header:hover {
  border-bottom-color: #e87ab2;
}

.verifications-section-title {
  font-size: 20px;
  font-weight: 600;
  color: #F2F4F3;
  margin: 0;
}

.verifications-toggle-icon {
  font-size: 18px;
  color: #88bef3;
  transition: transform 0.2s ease;
}

.verifications-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
@media (max-width: 768px) {
  .verifications-list {
    grid-template-columns: 1fr;
  }
}

.verification-card {
  background: linear-gradient(135deg, #192D35 0%, #16272e 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.verification-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e87ab2 0%, #88bef3 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.verification-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}
.verification-card:hover::before {
  opacity: 1;
}
.verification-card.verification-card-pending {
  border: 2px solid #e87ab2;
  background: linear-gradient(135deg, rgba(232, 122, 178, 0.1) 0%, #192D35 100%);
}
.verification-card.verification-card-pending::before {
  opacity: 1;
  background: linear-gradient(90deg, #e87ab2 0%, #e04f99 100%);
}
.verification-card.verification-card-accepted {
  border-left: 4px solid #88bef3;
}
.verification-card.verification-card-declined {
  border-left: 4px solid red;
  opacity: 0.7;
}

.verification-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 12px;
}

.verification-card-user {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.verification-card-name {
  font-size: 18px;
  font-weight: 600;
  color: #F2F4F3;
}

.verification-card-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.verification-card-badge.verification-card-badge-pending {
  background: rgba(232, 122, 178, 0.2);
  color: #e87ab2;
}
.verification-card-badge.verification-card-badge-accepted {
  background: rgba(136, 190, 243, 0.2);
  color: #88bef3;
}
.verification-card-badge.verification-card-badge-declined {
  background: rgba(204, 0, 0, 0.2);
  color: red;
}

.verification-card-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.verification-card-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.verification-card-detail {
  display: flex;
  gap: 8px;
  font-size: 14px;
}

.verification-card-label {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.verification-card-value {
  color: #F2F4F3;
  font-weight: 400;
}

.verifications-empty {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
}

.verifications-history {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stats-page {
  padding: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.stats-header {
  margin-bottom: 32px;
}
.stats-header h1 {
  margin: 0 0 16px 0;
  color: #e87ab2;
  font-size: 28px;
  font-weight: 700;
}

.stats-filter-section {
  margin-bottom: 24px;
  padding: 16px;
  background: linear-gradient(135deg, #192D35 0%, #16272e 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.stats-filter-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stats-filter-label {
  color: #F2F4F3;
  font-size: 14px;
  font-weight: 600;
}

.stats-filter-select {
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #F2F4F3;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.stats-filter-select:hover {
  border-color: #e87ab2;
  background: rgba(0, 0, 0, 0.4);
}
.stats-filter-select:focus {
  outline: none;
  border-color: #e87ab2;
  box-shadow: 0 0 0 3px rgba(232, 122, 178, 0.2);
}

.stats-graphs-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.stats-graph-card {
  background: linear-gradient(135deg, #192D35 0%, #16272e 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.stats-graph-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e87ab2 0%, #88bef3 100%);
  opacity: 0.5;
}
.stats-graph-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.stats-graph-title {
  font-size: 18px;
  font-weight: 600;
  color: #F2F4F3;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stats-graph-icon {
  font-size: 20px;
}

.stats-graph-container {
  position: relative;
  height: 450px;
  width: 100%;
}
@media (max-width: 768px) {
  .stats-graph-container {
    height: 350px;
  }
}

.stats-table-section {
  margin-top: 32px;
}

.stats-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.stats-table-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  color: #F2F4F3;
  font-size: 14px;
  transition: all 0.2s ease;
}
.stats-table-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #e87ab2;
}

.stats-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(135deg, #192D35 0%, #16272e 100%);
  min-width: 800px;
}
.stats-table thead {
  background: rgba(0, 0, 0, 0.3);
}
.stats-table thead th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  color: #e87ab2;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.stats-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease;
}
.stats-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.stats-table tbody tr:last-child {
  border-bottom: none;
}
.stats-table tbody td {
  padding: 16px;
  color: #F2F4F3;
  font-size: 14px;
  vertical-align: top;
}
.stats-table tbody td:first-child {
  font-weight: 600;
  color: #88bef3;
}

.stats-table-collapsed {
  display: none;
}

.stats-summary-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.stats-summary-card {
  background: linear-gradient(135deg, #192D35 0%, #16272e 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.stats-summary-card .stats-summary-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.stats-summary-card .stats-summary-value {
  font-size: 24px;
  font-weight: 700;
  color: #F2F4F3;
}

.settings-page {
  padding: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.box-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(135deg, #192D35 0%, #14242b 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #F2F4F3;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.box-menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e87ab2 0%, #88bef3 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.box-menu-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border-color: #e87ab2;
  background: linear-gradient(135deg, #16272e 0%, #111e24 100%);
}
.box-menu-item:hover::before {
  opacity: 1;
}
.box-menu-item:hover::after {
  color: #e87ab2;
  transform: translateX(4px);
}
.box-menu-item:active {
  transform: translateY(0);
}
.box-menu-item span {
  position: relative;
  z-index: 1;
}
.box-menu-item::after {
  content: "→";
  position: absolute;
  right: 24px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.settings-inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.settings-inputs:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(232, 122, 178, 0.3);
}
.settings-inputs .input-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.settings-inputs .input-group label {
  font-size: 14px;
  color: #F2F4F3;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  flex: 1;
}
.settings-inputs .input-group input[type=radio],
.settings-inputs .input-group input[type=checkbox] {
  width: auto;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: #e87ab2;
}
.settings-inputs .input-group input[type=date],
.settings-inputs .input-group input[type=text],
.settings-inputs .input-group input[type=email],
.settings-inputs .input-group input[type=password],
.settings-inputs .input-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #F2F4F3;
  font-size: 14px;
  font-family: Tahoma, sans-serif;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
}
.settings-inputs .input-group input[type=date]:focus,
.settings-inputs .input-group input[type=text]:focus,
.settings-inputs .input-group input[type=email]:focus,
.settings-inputs .input-group input[type=password]:focus,
.settings-inputs .input-group select:focus {
  outline: none;
  border-color: #e87ab2;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(232, 122, 178, 0.1);
}
.settings-inputs .input-group input[type=date]::placeholder,
.settings-inputs .input-group input[type=text]::placeholder,
.settings-inputs .input-group input[type=email]::placeholder,
.settings-inputs .input-group input[type=password]::placeholder,
.settings-inputs .input-group select::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.settings-inputs input:not([type=radio]):not([type=checkbox]),
.settings-inputs select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #F2F4F3;
  font-size: 14px;
  font-family: Tahoma, sans-serif;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
}
.settings-inputs input:not([type=radio]):not([type=checkbox]):focus,
.settings-inputs select:focus {
  outline: none;
  border-color: #e87ab2;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(232, 122, 178, 0.1);
}
.settings-inputs input:not([type=radio]):not([type=checkbox])::placeholder,
.settings-inputs select::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.settings-inputs select {
  cursor: pointer;
}
.settings-inputs select option {
  background: #192D35;
  color: #F2F4F3;
}

.item-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}
.item-list:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(232, 122, 178, 0.3);
  transform: translateX(4px);
}
.item-list span {
  color: #F2F4F3;
  font-size: 14px;
  font-weight: 500;
}
.item-list .flexbox {
  gap: 12px;
}
.item-list button {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.item-list .btn.primary {
  background: linear-gradient(135deg, #88bef3 0%, #5aa5ee 100%);
  border: none;
  color: #0d0d0d;
}
.item-list .btn.primary:hover {
  background: linear-gradient(135deg, #5aa5ee 0%, #4398ec 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(136, 190, 243, 0.3);
}
.item-list .btn.danger {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
  border: none;
  color: #F2F4F3;
}
.item-list .btn.danger:hover {
  background: linear-gradient(135deg, #ee5a5a 0%, #dd4a4a 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.cms-edit-container {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(34, 51, 59, 0.4);
  padding: 30px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.8) 0px 24px 60px 0px;
}

.cms-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cms-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cms-form .form-group label {
  font-weight: 600;
  color: #F2F4F3;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cms-form .form-group input[type=text],
.cms-form .form-group input[type=email],
.cms-form .form-group select,
.cms-form .form-group textarea {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(13, 13, 13, 0.6);
  color: #F2F4F3;
  font-size: 16px;
  font-family: Tahoma, sans-serif;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}
.cms-form .form-group input[type=text]:focus,
.cms-form .form-group input[type=email]:focus,
.cms-form .form-group select:focus,
.cms-form .form-group textarea:focus {
  outline: none;
  border-color: rgba(136, 190, 243, 0.5);
  box-shadow: 0 0 0 3px rgba(136, 190, 243, 0.1);
}
.cms-form .form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.cms-form .form-group select {
  cursor: pointer;
}

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cover-preview {
  max-width: 300px;
  max-height: 200px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.cover-preview:hover {
  transform: scale(1.05);
  border-color: rgba(136, 190, 243, 0.5);
}

.cover-placeholder {
  width: 300px;
  height: 200px;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(13, 13, 13, 0.3);
  font-size: 18px;
  color: rgba(242, 244, 243, 0.6);
}
.cover-placeholder:hover {
  border-color: rgba(136, 190, 243, 0.5);
  background: rgba(13, 13, 13, 0.5);
  color: rgba(242, 244, 243, 0.8);
}

#coverImageContainer {
  position: relative;
  display: inline-block;
}

.thumb-placeholder {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(13, 13, 13, 0.3);
  font-size: 24px;
}

.ai-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(4px);
}

.ai-modal-content {
  background: linear-gradient(145deg, #1a2a32 0%, #0d1518 100%);
  padding: 32px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 1px rgba(136, 190, 243, 0.3);
  border: 1px solid rgba(136, 190, 243, 0.15);
}
.ai-modal-content h3 {
  margin: 0 0 16px 0;
  font-size: 22px;
  color: #F2F4F3;
}
.ai-modal-content p {
  margin: 0 0 16px 0;
  color: rgba(242, 244, 243, 0.7);
  font-size: 14px;
}

.ai-select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(136, 190, 243, 0.2);
  background: rgba(13, 13, 13, 0.8);
  color: #F2F4F3;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.ai-select:focus {
  outline: none;
  border-color: rgba(136, 190, 243, 0.5);
  box-shadow: 0 0 0 3px rgba(136, 190, 243, 0.15);
}
.ai-select option {
  background: #0d1518;
  color: #F2F4F3;
}

.ai-textarea {
  width: 100%;
  min-height: 140px;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(136, 190, 243, 0.2);
  background: rgba(13, 13, 13, 0.8);
  color: #F2F4F3;
  font-size: 15px;
  font-family: inherit;
  resize: vertical;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.ai-textarea:focus {
  outline: none;
  border-color: rgba(136, 190, 243, 0.5);
  box-shadow: 0 0 0 3px rgba(136, 190, 243, 0.15);
}
.ai-textarea::placeholder {
  color: rgba(242, 244, 243, 0.4);
}

.ai-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.ai-modal-buttons .btn {
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ai-modal-buttons .btn-primary {
  background: linear-gradient(135deg, #88bef3 0%, #5a9cd6 100%);
  color: #0d0d0d;
}
.ai-modal-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(136, 190, 243, 0.3);
}
.ai-modal-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #F2F4F3;
}
.ai-modal-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

#aiLoadingOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  backdrop-filter: blur(6px);
}

.ai-loading {
  text-align: center;
  color: #F2F4F3;
}
.ai-loading p {
  margin-top: 20px;
  font-size: 16px;
  color: rgba(242, 244, 243, 0.8);
}

.ai-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(136, 190, 243, 0.2);
  border-top-color: #88bef3;
  border-radius: 50%;
  animation: aiSpin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes aiSpin {
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=style.css.map */
