/**
 * Frontend styly pro plugin StanekTech Ke stažení
 */

.stanektech-ks-container {
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Kategorie */
.stanektech-ks-category {
    margin-bottom: 30px;
}

.stanektech-ks-category-title {
    font-size: 24px;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 600;
    color: #333;
}

/* Grid dokumentů */
.stanektech-ks-documents-grid {
    display: grid;
    grid-gap: 20px;
    margin-bottom: 30px;
}

.stanektech-ks-documents-grid.columns-1 {
    grid-template-columns: 1fr;
}

.stanektech-ks-documents-grid.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.stanektech-ks-documents-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.stanektech-ks-documents-grid.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Jednotlivý dokument */
.stanektech-ks-document {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}

.stanektech-ks-document:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: #c0c0c0;
}

.stanektech-ks-document-link {
    display: flex;
    padding: 15px;
    color: inherit;
    text-decoration: none;
}

.stanektech-ks-document-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Ikona dokumentu */
.stanektech-ks-document-icon {
    flex: 0 0 50px;
    height: 50px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

/* Ikony podle typu souboru */
.stanektech-ks-document-icon .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: white;
}

.stanektech-ks-filetype-pdf {
    background-color: #ff5722;
}

.stanektech-ks-filetype-doc,
.stanektech-ks-filetype-docx {
    background-color: #4285f4;
}

.stanektech-ks-filetype-xls,
.stanektech-ks-filetype-xlsx,
.stanektech-ks-filetype-csv {
    background-color: #0f9d58;
}

.stanektech-ks-filetype-ppt,
.stanektech-ks-filetype-pptx {
    background-color: #db4437;
}

.stanektech-ks-filetype-zip,
.stanektech-ks-filetype-rar,
.stanektech-ks-filetype-gz,
.stanektech-ks-filetype-7z {
    background-color: #795548;
}

.stanektech-ks-filetype-jpg,
.stanektech-ks-filetype-jpeg,
.stanektech-ks-filetype-png,
.stanektech-ks-filetype-gif,
.stanektech-ks-filetype-webp {
    background-color: #9c27b0;
}

.stanektech-ks-filetype-mp3,
.stanektech-ks-filetype-wav,
.stanektech-ks-filetype-ogg {
    background-color: #2196F3;
}

.stanektech-ks-filetype-mp4,
.stanektech-ks-filetype-avi,
.stanektech-ks-filetype-mov,
.stanektech-ks-filetype-wmv {
    background-color: #FF9800;
}

.stanektech-ks-filetype-txt {
    background-color: #607D8B;
}

/* Obsah dokumentu */
.stanektech-ks-document-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stanektech-ks-document-title {
    font-size: 17px;
    margin: 0 0 8px;
    font-weight: 500;
    color: #333;
}

.stanektech-ks-document-perex {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.4;
}

.stanektech-ks-document-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
}

.stanektech-ks-document-filename-text {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
    margin-right: 10px;
}

.stanektech-ks-document-filesize {
    white-space: nowrap;
}

/* Tlačítko pro stažení */
.stanektech-ks-document-download {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background-color: #0073aa;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    align-self: flex-start;
    transition: background-color 0.2s;
}

.stanektech-ks-document-download .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    margin-right: 5px;
}

.stanektech-ks-document-link:hover .stanektech-ks-document-download {
    background-color: #005177;
}

/* Prázdná zpráva */
.stanektech-ks-empty {
    background-color: #f9f9f9;
    border: 1px dashed #ddd;
    padding: 20px;
    text-align: center;
    color: #777;
    border-radius: 8px;
}

/* Responzivita */
@media (max-width: 992px) {
    .stanektech-ks-documents-grid.columns-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .stanektech-ks-documents-grid.columns-3,
    .stanektech-ks-documents-grid.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stanektech-ks-documents-grid.columns-2,
    .stanektech-ks-documents-grid.columns-3,
    .stanektech-ks-documents-grid.columns-4 {
        grid-template-columns: 1fr;
    }
    
    .stanektech-ks-document-link {
        flex-direction: column;
    }
    
    .stanektech-ks-document-icon {
        margin-right: 0;
        margin-bottom: 10px;
        width: 50px;
    }
}