/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    Created on : 18. 4. 2024, 9:47:39
    Author     : netprogres
*/


.attachment-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.attachment-title {
    font-size: 2em;
    margin-bottom: 20px;
}

.attachment-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.attachment-image {
    flex: 0 0 50%;
    max-width: 50%;
    box-sizing: border-box;
    padding-right: 20px;
}

.attachment-info {
    flex: 1;
    padding-left: 20px;
    box-sizing: border-box;
}

.attachment-description {
    margin-bottom: 20px;
}

.attachment-downloads{
    text-align:left;
    margin-bottom: 30px;
}

#ger-downloads a{
    margin-left: 0px;
}


div.attachment-back{
    margin-top: 20px;
    text-align: right;
    font-weight: bold;
}

.attachment-downloads .button:focus,
.attachment-downloads .button:hover {        
    color: #000000;
    border-color: var(--ast-global-color-0);    
} 




/*
.attachment-downloads .button {
    display: block;
    margin-bottom: 10px;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-align: center;
    text-decoration: none;
    width: auto;
    cursor: pointer;
} */

.back-to-photobank {
    display: block;
    margin-top: 20px;
    color: #333;
    text-decoration: none;
}

/* Responzivní úpravy */
@media (max-width: 768px) {
    .attachment-image,
    .attachment-info {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
    }

    .attachment-info {
        padding-top: 20px;
    }
}

