.rychle-spravy-container * {
    font-family: 'Ubuntu';
}

.rychle-spravy-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 350px; /* Adjust width as needed */
    max-width: 90%; /* Responsive for smaller screens */
    z-index: 1000;
    font-family:'Ubuntu';
}

.rychla-sprava-modal {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.rychla-sprava-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rychla-sprava-header h4 {
    margin: 0;
    font-size: 16px;
    flex-grow: 1;
}

.close-modal {
    background-color: #ff4d4d;
    border: none;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.close-modal:hover {
    background-color: #e60000;
}

.reopen-modal {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 5px 15px;
    margin: 10px 0;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s;
    width: 100%; /* Full width for better responsive behavior */
}

.reopen-modal:hover {
    background-color: #45a049;
}

img.up-modal {
    width: 16px;
    height: 16px;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .rychle-spravy-container {
        width: 100%;
        right: 10px;
        bottom: 10px;
        padding: 10px;
    }

    .rychla-sprava-modal {
        font-size: 14px;
        padding: 10px;
    }

    .rychla-sprava-header h4 {
        font-size: 14px;
    }

    .close-modal {
        font-size: 16px;
        padding: 4px 8px;
    }

    .reopen-modal {
        font-size: 14px;
        padding: 4px 12px;
    }
}
