/* Основные стили */
body {
    padding-top: 70px; /* Для fixed navbar */
}

.navbar-brand {
    font-weight: bold;
}

/* Стили для форм */
.form-group {
    margin-bottom: 1rem;
}

.required label:after {
    content: " *";
    color: red;
}

/* Стили для таблиц */
.grid-view th {
    white-space: nowrap;
}

.grid-view .filters input,
.grid-view .filters select {
    min-width: 100px;
}

/* Стили для страницы входа */
.login-form {
    max-width: 400px;
    margin: 100px auto;
}

.login-box {
    background: #f7f7f7;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Стили для главной страницы */
.stat-card {
    background: #34495e;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    background: #4a5c6e;
}

.stat-card .card-body {
    padding: 2rem;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.stat-card .stat-label {
    color: #b8c5d1;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Стили для кнопок */
.btn {
    padding: 0.5rem 1rem;
}

.btn-group-sm > .btn, .btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* Стили для алертов */
.alert {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Стили для breadcrumbs */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
}

/* Стили для footer */
#footer {
    margin-top: 50px;
}

/* Стили для форм поиска */
.search-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Стили для страниц с проектами */
.project-card {
    margin-bottom: 20px;
    transition: all 0.3s;
}

.project-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project-status {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

.project-status.active {
    background-color: #28a745;
    color: white;
}

.project-status.inactive {
    background-color: #6c757d;
    color: white;
}

/* Стили для страниц индексации */
.indexing-progress {
    margin: 20px 0;
}

.indexing-stats {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.indexing-stat {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 5px;
}

/* Утилиты */
.mt-20 {
    margin-top: 20px;
}

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

/* Адаптивность */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .stat-card .stat-number {
        font-size: 2rem;
    }
    
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
    }
} 