#cosas-cookie{
	position:fixed;
	inset:0;
	background:rgba(0,0,0,.6);
	display:flex;
	align-items:center;
	justify-content:center;
	z-index:999999;
	font-family:Arial, sans-serif;
}

.cc-box{
	background:#fff;
	width:min(780px, calc(100% - 32px));
	padding:24px;
	border-radius:12px;
	box-sizing:border-box;
}

/* VIEWS */
.cc-details{ display:none; }

/* TEXT */
.cc-desc{
	font-size:13px;
	color:#555;
	margin:8px 0;
}

/* ACTIONS */
.cc-actions{
	display:flex;
	gap:10px;
	margin-top:15px;
	flex-wrap:wrap;
}

/* BUTTONS */
.cc-buttons{
	display:flex;
	gap:8px;
	margin-top:10px;
}

.cc-state{
	font-size:13px;
	font-weight:600;
}

.btn{
	padding:10px 14px;
	border-radius:8px;
	border:none;
	cursor:pointer;
	font-weight:600;
}

.btn.primary{ background:#111; color:#fff; }
.btn.ghost{ background:#eee; }
.btn.link{ background:none; text-decoration:underline; }

.btn.save{ background:#1a7f37; color:#fff; }

.btn-mini{
	padding:6px 10px;
	font-size:12px;
	border-radius:6px;
	border:1px solid #ddd;
	cursor:pointer;
}

.btn-mini.accept{ background:#e9f9ef; color:#1a7f37; }
.btn-mini.reject{ background:#ffecec; color:#b42318; }

.btn-mini:disabled{
	opacity:.5;
	cursor:not-allowed;
	background:#f5f5f5;
	color:#888;
	border-color:#ddd;
}

/* ITEMS */
.cc-item{
	border-top:1px solid #eee;
	padding:12px 0;
}

.cc-head{
	display:flex;
	justify-content:space-between;
	align-items:center;
}

.cc-state.ok{ color:#1a7f37; }
.cc-state.no{ color:#b42318; }

/* MOBILE */
@media (max-width:600px){

	.cc-box{
		margin:16px;
		width:auto;
	}

	.cc-actions{
		flex-direction:column;
	}

	.btn{
		width:100%;
	}
}