/*  This is the style sheet for lindens-or.com  */

a.menu
{
text-decoration: none;
font-family: "times new roman";
font-size: 10pt;
font-style: regular;
color: #0000FF
}

/*  This is for links  */
a.link
{
font-family: "times new roman";
font-size: 28pt;
font-style: bold
}

/*  This is for a small text description  */
font.desc
{
font-family: gautami;
font-size: 10pt;
font-style: regular
}

/* This is for label text */
.movie_label
{
  font-family: gautami;
  font-size: 10pt;
  font-style: normal;
  font-weight: bold;
  color: black
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  top: -10;
  left: 0;
  right: 0;
  bottom: 0;
  width: 28px;
  height: 16px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 1px;
  bottom: 1px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(12px);
  -ms-transform: translateX(12px);
  transform: translateX(12px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 20px;
}

.slider.round:before {
  border-radius: 50%;
}

img.responsive-img {
    display: block;
    max-width: 100%;  /* Ensures the image scales down on smaller screens */
    height: auto;     /* Maintains aspect ratio */
}

/* Optional: Specific styles for different screen sizes */
@media (max-width: 768px) {  /* Targeting mobile devices */
    img.responsive-img {
        width: 100%;   /* Makes sure it fits the container */
        max-height: 300px; /* Adjust based on your design preference */
        object-fit: cover; /* Crops image if needed */
    }
}