html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, input ,textarea
{margin:0px; padding:0px; text-decoration:none; list-style:none; outline:none; border:none; font-family:Arial, Helvetica, sans-serif;}
body
	{line-height:1}
ol,ul
	{list-style:none}
blockquote,q
	{quotes:none}
blockquote:before,blockquote:after,q:before,q:after
	{content:'';content:none}
:focus
	{outline:0;}
a:focus
	{outline:0; background: none;}
ins
	{text-decoration:none}
del
	{text-decoration:line-through}
table
	{border-collapse:collapse;border-spacing:0}
.temizle
	{clear: both;}
a:hover
	{text-decoration: none;}



.cookie-modal {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 600px;
  margin: auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  font-family: Arial, sans-serif;
  font-size: 15px;
  display: none;
}

.cookie-modal h3 {
  margin-top: 0;
  font-size: 18px;
  color: #333;
}

.cookie-modal p {
  color: #333;
}

.cookie-modal a {
  color: #007BFF;
  text-decoration: none;
}

.cookie-modal a:hover {
  text-decoration: underline;
}

.cookie-preferences {
  display: none;
  margin-top: 15px;
}

.cookie-preferences label {
  display: block;
  margin-top: 10px;
  font-weight: 600;
}

.cookie-preferences p {
  margin: 5px 0 10px 20px;
  font-size: 14px;
  color: #555;
}

.cookie-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.cookie-buttons .accept {
  background-color: #28a745;
  color: white;
}

.cookie-buttons .accept:hover {
  background-color: #218838;
}

.cookie-buttons .reject {
  background-color: #dc3545;
  color: white;
}

.cookie-buttons .reject:hover {
  background-color: #c82333;
}

.cookie-buttons .manage {
  background-color: #6c757d;
  color: white;
}

.cookie-buttons .manage:hover {
  background-color: #5a6268;
}

@media (max-width: 600px) {
  .cookie-modal {
    font-size: 14px;
    padding: 15px;
  }

  .cookie-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}