﻿body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
}

.header {
    background: #349fed;
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

    .header h1 {
        margin: 0;
        font-size: 2.5em;
        font-weight: 300;
    }

.current-version {
    font-size: 1.2em;
    opacity: 0.9;
    margin-top: 10px;
}

.current-build {
    font-size: 1.2em;
    opacity: 0.9;
    margin-top: 5px;
}

.version-selector {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.selector-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .selector-group label {
        font-weight: 600;
        color: #2c3e50;
        font-size: 0.9em;
    }

select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1em;
    background: white;
    min-width: 200px;
    transition: border-color 0.3s;
}

    select:focus {
        border-color: #349fed;
        outline: none;
    }

.patch-block {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border-left: 4px solid #349fed;
}

.patch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.patch-date {
    font-size: 1.4em;
    font-weight: 600;
    color: #2c3e50;
}

.patch-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.patch-version {
    background: #349fed;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
}

.patch-build {
    background: #2c3e50;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
}

.comment-block {
    background: #f8f9fa;
    border-left: 3px solid #349fed;
    padding: 15px 20px;
    margin: 15px 0;
    border-radius: 0 8px 8px 0;
}

.comment-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1em;
}

.comment-text {
    color: #555;
    line-height: 1.5;
    font-style: italic;
}

.changes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .changes-list li {
        padding: 8px 0;
        padding-left: 20px;
        position: relative;
        border-bottom: 1px solid #f8f9fa;
    }

        .changes-list li:before {
            content: "•";
            color: #349fed;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .changes-list li:last-child {
            border-bottom: none;
        }

/* Стили для подэлементов */
.sub-items {
    list-style: none;
    padding-left: 25px;
    margin: 5px 0;
}

    .sub-items li {
        padding: 4px 0;
        padding-left: 18px;
        position: relative;
        border-bottom: none;
        color: #666;
        font-size: 0.95em;
    }

        .sub-items li:before {
            content: "–";
            color: #666;
            font-weight: normal;
            position: absolute;
            left: 0;
        }

    .sub-items .sub-items li:before {
        content: "∘";
    }

.no-results {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}
