.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 1rem;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    flex-wrap: wrap; /* allow wrapping on small screens */
}

.cookie-banner p {
    margin-left: 30px;
    flex: 1 1 60%; /* take most space, but allow shrinking */
    min-width: 200px; /* keep text readable */
}

.cookie-banner button {
    margin-left: 10px;
    padding: 8px 15px;
    background: #fff;
    color: #222;
    border: none;
    cursor: pointer;
    flex: 1 1 auto; /* buttons share remaining space */
    max-width: 120px;
    min-width: 100px;
}

/* Mobile tweaks */
@media (max-width: 480px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
		gap: 10px;
    }

    .cookie-banner p {
        flex: none;
		text-align:center;
		margin-bottom: 200px;
    }

    .cookie-banner button {
        margin-left: 0;
        margin-bottom: 10px;
        max-width: none;
        min-width: auto;
        width: 100%;
    }

    .cookie-banner button:last-child {
        margin-bottom: 0;
    }
	
	.cookie-banner img {
		display: none;	
	}
}
