main > .container {
    padding: 70px 15px 20px;
}

.footer {
    background-color: #f5f5f5;
    font-size: .9em;
    height: 60px;
}

.footer > .container {
    padding-right: 15px;
    padding-left: 15px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    content: '';
    left: 3px;
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    margin: 4px 4px 2px 4px;
    background: transparent;
}

a.asc:after {
    border-bottom: solid 7px #212529;
    border-top-width: 0;
}

a.desc:after {
    border-top: solid 7px #212529;
    border-bottom-width: 0;
}

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
    padding-top: 7px;
    color: rgba(255, 255, 255, 0.5);
}

@media(max-width:767px) {
    .nav li > form > button.logout {
        display:block;
        text-align: left;
        width: 100%;
        padding: 10px 0;
    }
}

.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
}

.nav > li > form > button.logout:focus {
    outline: none;
}

.form-group {
    margin-bottom: 1rem;
}

/* Основний фон та текст */
body {
    background-color: #0b0e14; /* Темний фон під логотип */
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
}

/* Неонові акценти (колір логотипу) */
.text-neon {
    color: #00f3ff;
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.4);
}

.text-gradient {
    background: linear-gradient(90deg, #00f3ff 0%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Неонова кнопка CTA */
.btn-neon {
    background-color: transparent;
    color: #00f3ff;
    border: 1px solid #00f3ff;
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2), inset 0 0 10px rgba(0, 243, 255, 0.1);
}

.btn-neon:hover {
    background-color: #00f3ff;
    color: #0b0e14;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.6), inset 0 0 15px rgba(0, 243, 255, 0.4);
}

/* Картки послуг */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #00f3ff;
    box-shadow: 0 10px 20px rgba(0, 243, 255, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Стилізація полів вводу (Inputs & Textareas) */
.form-control {
    background-color: #121822; /* Трохи світліший за фон сайту */
    border: 1px solid rgba(0, 243, 255, 0.2);
    color: #e2e8f0;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: #121822;
    border-color: #00f3ff;
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.form-control::placeholder {
    color: rgba(226, 232, 240, 0.5);
}

.form-group label {
    color: #a0aec0;
    margin-bottom: 5px;
    font-weight: 500;
}

/* Колір для повідомлень про помилки (валідація) */
.invalid-feedback {
    color: #ff4d4d;
}