.verification-entry-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.verification-entry-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.verification-entry-card.official {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.verification-entry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.verification-entry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.verification-entry-card:hover::before {
  opacity: 1;
}

.verification-entry-icon {
  font-size: 60px;
  margin-bottom: 20px;
  color: white;
}

.verification-entry-title {
  color: white;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.verification-entry-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
}

.verification-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.verification-form-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
  text-align: center;
}

.verification-form-group {
  margin-bottom: 25px;
}

.verification-form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: #555;
  font-size: 15px;
}

.verification-form-label .required {
  color: #f5576c;
  margin-right: 3px;
}

.verification-form-input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.verification-form-input:focus {
  border-color: #667eea;
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.verification-form-input:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}

.verification-image-upload {
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fafafa;
}

.verification-image-upload:hover {
  border-color: #667eea;
  background: #f0f4ff;
}

.verification-image-upload.has-image {
  border-style: solid;
  border-color: #4caf50;
}

.verification-upload-icon {
  font-size: 48px;
  color: #bbb;
  margin-bottom: 15px;
}

.verification-upload-text {
  font-size: 14px;
  color: #888;
  margin-bottom: 5px;
}

.verification-upload-hint {
  font-size: 12px;
  color: #999;
}

.verification-image-preview {
  margin-top: 20px;
}

.verification-image-preview img {
  max-width: 100%;
  max-height: 300px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.verification-status-container {
  max-width: 900px;
  margin: 0 auto;
}

.verification-status-card {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.verification-status-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 20px;
}

.verification-status-badge.pending {
  background: #fff3cd;
  color: #856404;
}

.verification-status-badge.approved {
  background: #d4edda;
  color: #155724;
}

.verification-status-badge.rejected {
  background: #f8d7da;
  color: #721c24;
}

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

.verification-info-item {
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.verification-info-label {
  font-size: 13px;
  color: #666;
  margin-bottom: 5px;
}

.verification-info-value {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.advertisement-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.advertisement-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f0f0f0;
}

.advertisement-title {
  font-size: 20px;
  font-weight: bold;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 8px;
}

.advertisement-title i {
  color: #667eea;
}

.advertisement-status-badge {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
}

.advertisement-status-badge.status-active {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.advertisement-status-badge.status-expired {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.advertisement-status-badge.status-cancelled {
  background: #e2e3e5;
  color: #383d41;
  border: 1px solid #d6d8db;
}

.advertisement-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.advertisement-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.advertisement-detail-label {
  font-size: 12px;
  color: #6c757d;
  font-weight: 500;
}

.advertisement-detail-value {
  font-size: 14px;
  color: #2c3e50;
  font-weight: 600;
}

.verification-admin-table {
  width: 100%;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.verification-admin-table th {
  background: #f8f9fa;
  padding: 15px;
  text-align: left;
  font-weight: 600;
  color: #555;
  border-bottom: 2px solid #e0e0e0;
}

.verification-admin-table td {
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.verification-admin-table tr:last-child td {
  border-bottom: none;
}

.verification-type-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
}

.verification-type-badge.personal {
  background: #e3f2fd;
  color: #1976d2;
}

.verification-type-badge.official {
  background: #fce4ec;
  color: #c2185b;
}

.verification-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.verification-modal.show {
  opacity: 1;
  visibility: visible;
}

.verification-modal-content {
  background: white;
  border-radius: 15px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.verification-modal.show .verification-modal-content {
  transform: scale(1);
}

.verification-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.verification-modal-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.verification-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.verification-modal-close:hover {
  color: #333;
}

.verification-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 2px solid #f0f0f0;
}

.home-advertisements {
  margin: 30px 0;
}

.home-advertisements-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.home-advertisements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}

.home-ad-item {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.home-ad-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.home-ad-item img {
  width: 100%;
  height: 50px;
  object-fit: cover;
  display: block;
}

.home-ad-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.9);
}

.home-ad-badge.personal {
  color: #1976d2;
}

.home-ad-badge.official {
  color: #c2185b;
}

.verification-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 4px;
}

.verification-btn i {
  font-size: 14px;
}

.verification-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.verification-btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.verification-btn-primary:hover {
  background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%);
}

.verification-btn-success {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
}

.verification-btn-success:hover {
  background: linear-gradient(135deg, #0e8478 0%, #2dd96a 100%);
}

.verification-btn-danger {
  background: #f44336;
  color: white;
}

.verification-btn-danger:hover {
  background: #da190b;
}

.verification-btn-warning {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.verification-btn-warning:hover {
  background: linear-gradient(135deg, #e082ea 0%, #e4465b 100%);
}

.verification-btn-info {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
}

.verification-btn-info:hover {
  background: linear-gradient(135deg, #3e9bed 0%, #00e1ed 100%);
}

.verification-btn-secondary {
  background: #6c757d;
  color: white;
}

.verification-btn-secondary:hover {
  background: #5a6268;
}

.verification-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.verification-btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .verification-entry-container {
    grid-template-columns: 1fr;
  }
  
  .verification-form-container {
    padding: 25px;
  }
  
  .verification-modal-content {
    padding: 25px;
  }
  
  .home-advertisements-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
  
  .verification-info-grid {
    grid-template-columns: 1fr;
  }
}

.verification-loading {
  text-align: center;
  padding: 40px;
}

.verification-loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.verification-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

.verification-empty-icon {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.verification-empty-text {
  font-size: 16px;
}

.verification-price-info {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
}

.verification-price-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}

.verification-price-item:last-child {
  border-bottom: none;
}

.verification-price-label {
  color: #666;
}

.verification-price-value {
  font-weight: bold;
  color: #667eea;
}

.verification-price-value.free {
  color: #4caf50;
}

.verification-form-select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.verification-form-select:focus {
  border-color: #667eea;
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.verification-tip {
  background: #e3f2fd;
  border-left: 4px solid #2196f3;
  padding: 12px 15px;
  border-radius: 4px;
  margin: 15px 0;
  font-size: 14px;
  color: #1565c0;
}

.verification-warning {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 12px 15px;
  border-radius: 4px;
  margin: 15px 0;
  font-size: 14px;
  color: #856404;
}

.verification-error {
  background: #f8d7da;
  border-left: 4px solid #f44336;
  padding: 12px 15px;
  border-radius: 4px;
  margin: 15px 0;
  font-size: 14px;
  color: #721c24;
}

.verification-note {
  background: #d7f8d8;
  border-left: 4px solid #1f9d00;
  padding: 12px 15px;
  border-radius: 4px;
  margin: 15px 0;
  font-size: 14px;
  color: #1f9d00;
}

.text-danger {
  color: #dc3545 !important;
}

.text-success {
  color: #28a745 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-muted {
  color: #6c757d !important;
}

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

.mt-3 { margin-top: 16px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; }
.me-2 { margin-right: 8px; }
.d-none { display: none; }
.d-block { display: block; }