.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #010080;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-family: Arial, sans-serif;
}
.cookie-buttons button {
    background: #d97706;
    border: none;
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    margin-left: 10px;
    font-weight: bold;
    cursor: pointer;
}
.cookie-buttons button:first-child {
    background: #fff;
    color: #000;
}
.cookie-modal {
    position: fixed;
    bottom: -14%;
    right: -9%;
    transform: translate(-50%, -50%);
    background: white;
    width: 350px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    padding: 20px;
    z-index: 10000;
    font-family: Arial, sans-serif;
}
.cookie-modal.hidden {
    display: none;
}
.cookie-modal-content h2 {
    margin-top: 0;
    font-size: 20px;
}
.cookie-modal-content p {
    font-size: 14px;
    color: #444;
}
.cookie-info {
    display: flex;
    justify-content: space-between;
    background: #e0e0ff;
    padding: 10px;
    width: 100%;
    margin: 8px 0;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    color: #333;
}
.cookie-toggle label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e0e0ff;
    padding: 10px;
    border-radius: 10px;
    margin: 8px 0;
    font-size: 14px;
}
.cookie-toggle input[type="checkbox"] {
    width: 40px;
    height: 20px;
    appearance: none;
    background: #ccc;
    border-radius: 25px;
    position: relative;
    outline: none;
    cursor: pointer;
    transition: background 0.3s;
}
.cookie-toggle input[type="checkbox"]:checked {
    background: #010080;
}
.cookie-toggle input[type="checkbox"]::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}
.cookie-toggle input[type="checkbox"]:checked::before {
    transform: translateX(20px);
}
.cookie-modal-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
#cookie-close {
    background: #e0e0e0;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
}
#cookie-save {
    background: #010080;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}
@media(max-width:680px){
	.cookie-modal{
		bottom: -7%;
		left: 50%;   
	}
	.cookie-banner{
		display:block;
		text-align: center;
	}
	div#cookie-banner p {
    margin-bottom: 10px !important;
}
	
}