﻿.ellada20-fixed-stack {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    max-height: calc(100vh - 40px);
    /*overflow-y: auto;
    overflow-x: hidden;*/
    overflow: visible;
    width: auto;
}

.ellada20-panel {
    width: 360px;
    max-width: calc(100vw - 40px);
    box-sizing: border-box;
    background: #fff;
    padding: 14px 16px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
}


/*.ellada20-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: #fff;
    padding: 14px 16px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    max-width: 360px;
    font-family: "Arial", sans-serif;
}*/

.ellada20-logo img {
    height: 55px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.ellada20-separator {
    border: none;
    border-top: 1px solid #ccc;
    margin: 12px 0 10px 0; /* Κενό πάνω-κάτω */
}

.ellada20-text {
    font-size: 13px;
    line-height: 1.4;
    color: #003366;
    text-align: justify;
    margin: 0;
}

    .ellada20-text a {
        color: #0066cc;
        text-decoration: none;
        font-weight: bold;
    }

        .ellada20-text a:hover {
            text-decoration: underline;
        }

@media (max-width: 600px) {

    .ellada20-fixed-stack {
        position: static;
        right: auto;
        bottom: auto;
        z-index: auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        max-height: none;
        overflow: visible;
        margin-top: 16px;
    }

    .ellada20-panel {
        width: 100%;
        max-width: 100%;
        padding: 10px 12px;
    }


    /*.ellada20-fixed {
        max-width: 90%;
        right: 5%;
        bottom: 10px;
        padding: 10px 12px;
    }*/

    .ellada20-logo img {
        height: 45px;
    }

    .ellada20-separator {
        margin: 10px 0 8px 0;
    }

    .ellada20-text {
        font-size: 12px;
    }
}