/* ==========================================================================
   Стартовая страница DataExpress (index.css)
   Стиль: Windows 11 / High-Density Desktop ERP
   ========================================================================== */

html {
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Segoe UI Variable", Roboto, sans-serif;
    font-size: 13px;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100%;
    margin: 0;
    padding: 24px;
    box-sizing: border-box;
    background-color: #F3F3F3;
    background-image: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Логотип сервера */
.logo {
    text-align: center;
    margin-bottom: 18px;
    width: 100%;
}

.logo img,
.heart {
    width: 64px;
    height: auto;
    animation: none !important;
    transform: none !important;
    display: inline-block;
}

/* Карточка статуса и информации о сервере */
.data {
    width: 100%;
    max-width: 440px;
    background-color: #FFFFFF;
    border: 1px solid #D1D1D1;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 24px 32px;
    text-align: center;
    line-height: 1.6;
    font-size: 13px;
    color: #303030;
    box-sizing: border-box;
}

a {
    color: #0067C0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.1s;
}

a:visited {
    color: #0067C0;
}

a:hover {
    color: #005FA3;
    text-decoration: underline;
}

a:active {
    color: #00528C;
}