
a:hover{
    text-decoration: none !important;
}

.box_custom{
    width: 270px;
    display: inline-block;
    background-color: #f0f0f0;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin: 20px;
    color: black;
    text-align: center;
}

.box_custom:hover,.box_custom:focus{
    border: 2px solid #000;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    color: black !important;
    text-decoration: none !important;
}

.box_custom_line{
    width: "80%";
    max-width: 600px;
    display: block;
    background-color: #f0f0f0;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin: 20px;
    color: black;
    text-align: center;
}

.only_mediacss{
    display: none;
}

@media only screen and (max-width: 600px) {
  .only_mediacss{
        display: block;
    }
}

h3{
    margin-top: 3px;
    font-size: 20px !important;
}

.input-container {
  position: relative;
  width: 280px;
}

.fancy-input {
  width: 100%;
  padding: 14px 12px;
  margin-top: 15px;
  border: 2px solid #60a7e6;
  border-radius: 12px;
  background-color: #ffffff;
  color: #333;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

.fancy-input:focus {
  border-color: #60a7e6;
  box-shadow: 0 0 10px rgba(96, 167, 230, 0.7);
}

.input-label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  padding: 0 6px;
  color: #60a7e6;
  font-size: 16px;
  pointer-events: none;
  transition: 0.3s ease;
}

.fancy-input:focus + .input-label,
.fancy-input:not(:placeholder-shown) + .input-label {
  top: -8px;
  left: 10px;
  font-size: 12px;
  color: #60a7e6;
}

.fancy-button {
    width: 100%;
    max-width: 280px;
    padding: 14px;
    margin-top: 16px;
    background: #60a7e6;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(96, 167, 230, 0.4);
  }

  .fancy-button:hover {
    background: #4a94d1;
    box-shadow: 0 6px 14px rgba(96, 167, 230, 0.6);
    transform: translateY(-2px);
  }

  .fancy-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(96, 167, 230, 0.4);
  }

  .default_text{
    font-size: 18px;
    margin-bottom: 15px;
  }

    .cookie-popup {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 320px;
      background: #ffffff;
      border: 2px solid #60a7e6;
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 6px 16px rgba(96, 167, 230, 0.4);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
      z-index: 1000;
      animation: fadeIn 0.5s ease-in-out;
    }

    .cookie-popup h3 {
      margin: 0;
      font-size: 18px;
      color: #60a7e6;
    }

    .cookie-popup p {
      margin: 0;
      font-size: 14px;
      color: #333;
    }

    .cookie-buttons {
      display: flex;
      gap: 12px;
      margin-top: 8px;
    }

    .cookie-button {
      padding: 10px 18px;
      font-size: 14px;
      font-weight: bold;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .cookie-accept {
      background: #60a7e6;
      color: #ffffff;
      box-shadow: 0 4px 10px rgba(96, 167, 230, 0.4);
    }

    .cookie-accept:hover {
      background: #4a94d1;
      box-shadow: 0 6px 14px rgba(96, 167, 230, 0.6);
      transform: translateY(-2px);
    }

    .cookie-refuse {
      background: #ffffff;
      color: #60a7e6;
      border: 2px solid #60a7e6;
    }

    .cookie-refuse:hover {
      background: #f0f8ff;
      transform: translateY(-2px);
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translate(-50%, 20px); }
      to { opacity: 1; transform: translate(-50%, 0); }
    }

  .profile-image {
    width: 120px; /* Adjust size as needed */
    height: 120px;
    border-radius: 50%; /* Makes it circular */
    border: 4px solid #4a94d1; /* Border color */
    box-shadow: 0 0 15px rgba(74, 148, 209, 0.5); /* Subtle glow effect */
    object-fit: cover; /* Ensures image fills the circle nicely */
    transition: all 0.3s ease; /* Smooth hover effect */
  }

  .profile-image:hover {
      transform: scale(1.05); /* Slight zoom on hover */
      box-shadow: 0 0 20px rgba(74, 148, 209, 0.7); /* Enhanced glow on hover */
  }