body {
  background: #fff !important;
}
.fade-in { animation: fadeIn .6s ease-in; }
@keyframes fadeIn { from {opacity:0; transform:translateY(10px);} to {opacity:1; transform:none;} }

.btn-gradient {
  background: linear-gradient(135deg, #007bff, #00b4d8);
  color: #fff;
  transition: all 0.3s ease;
}
.btn-gradient:hover {
  box-shadow: 0 0 10px rgba(0,123,255,.4);
  transform: translateY(-2px);
}

.social-links a {
  color: #495057;
  margin: 0 8px;
  font-size: 1.4rem;
  transition: all .3s;
}
.social-links a:hover {
  color: #007bff;
  transform: scale(1.15);
}

.table {
  border-radius: 0.75rem;
  overflow: hidden;
}
.table-group {
  background: #f8f9fa !important;
  font-size: 1rem;
  letter-spacing: .3px;
  font-weight: 600;
}

.well {
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  padding: 10px 15px;
  margin-top: 8px;
  font-size: 0.92rem;
  color: #333;
}
.well-sm {
  padding: 8px 12px;
  font-size: 0.9rem;
}
.com {
  background: #f5f5f5;
  border-left: 4px solid #007bff;
  box-shadow: inset 0 0 3px rgba(0,0,0,0.05);
}

.modern-info-banner {
    width: 100%;
    background: #f8faff;
    border: 1px solid #eef2f8;
    border-radius: 16px; 
    padding: 12px 20px; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-inner-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 600px;
}

.banner-icon-circle {
    width: 30px;
    height: 30px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px; 
    margin-bottom: 6px;
    box-shadow: 0 3px 8px rgba(13, 110, 253, 0.15);
}

/* сохраняем центр */
.banner-content {
    text-align: center;
}

.main-text {
    font-size: 15px; /* Было 17px */
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 2px; /* 4px тоже норм */
    letter-spacing: -0.2px;
}

.sub-text {
    font-size: 13px; /* Было 14px */
    color: #718096;
    line-height: 1.3; /* 1.3! */
}

.support-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
    border-bottom: 1px dashed rgba(13, 110, 253, 0.3);
}

.support-link:hover {
    color: #0056b3;
    border-bottom-style: solid;
}

/* мобилка баннер */
@media (max-width: 576px) {
    .modern-info-banner {
        padding: 10px 15px;
    }
    .main-text {
        font-size: 14px;
    }
    .sub-text {
        font-size: 12px;
    }
}