.cookie-block {
    position: fixed;
    bottom: 1.25rem;
    left: 3%;
    right: 64%;
    background: #f8f9fa;
    border: 0.0625rem solid #dee2e6; 
    border-radius: 0.5rem;
    padding: 1.25rem; 
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
    z-index: 1000;
    font-family: Arial, sans-serif;
    font-size: 1.25rem; 
    line-height: 1.5;
    color: #212529;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem; 
}

.cookie-block a {
    color: #007bff;
    text-decoration: underline;
}

.cookie-block a:hover {
    color: #0056b3;
    text-decoration: none;
}

.cookie-block button {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 0.25rem; 
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1.25rem;
    white-space: nowrap;
    margin-left: auto;
}

.cookie-block button:hover {
    background: #0069d9;
}

@media (max-width: 768px) {
    .cookie-block {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-block button {
        margin-left: 0;
        align-self: flex-end;
    }
}