       .search-form {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }
        .search-form input[type="text"] {
            flex-grow: 1;
            padding: 5px;
            margin-right: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        .search-form button {
            padding: 5px 10px;
            border: none;
            border-radius: 4px;
            background-color: #4CAF50;
            color: white;
            cursor: pointer;
        }
        .search-form button:hover {
            background-color: #45a049;
        }

.searchContainer {
  display: flex;
  margin-bottom: 10px;
}

.searchIconContainer {
  width: 58px;
  height: 46px;
  border: 1px solid var(--inputBorderColor);
  border-right: none;
  border-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background-color: var(--searchIconContainerBackgroundColor);
  text-align: center;
  line-height: 46px;
}

.searchInput {
  composes: input from '~Components/Form/TextInput.css';

  height: 46px;
  border-radius: 0;
  font-size: 18px;
}

.clearLookupButton {
  border: 1px solid var(--inputBorderColor);
  border-left: none;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.message {
  margin-top: 30px;
  text-align: center;
  font-weight: 300;
  font-size: $largeFontSize;
}

.helpText {
  margin-bottom: 10px;
  font-size: 24px;
}

.noMoviesText {
  margin-top: 80px;
  margin-bottom: 20px;
}

.noResults {
  margin-bottom: 10px;
  font-weight: 300;
  font-size: 30px;
}

.searchResults {
  margin-top: 30px;
}


.helpText {
  margin-bottom: 10px;
  font-size: 24px;
}

.movie-card {
    display: flex;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.movie-card img {
    height: 300px;
    margin-right: 20px;
    object-fit: cover;
}

.movie-card h2 {
    margin: 0;
}

.movie-card .overview {
    margin-top: 10px;
}

.addMovieForm button {
    margin-top: 10px;
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
}

.addMovieForm button:hover {
    background-color: #45a049;
}

.movie-card {
    display: flex;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.movie-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.movie-card img {
    height: 300px;
    margin-right: 20px;
    object-fit: cover;
}

.movie-year {
    color: lightgrey;
}


.movie-rating-duration {
    display: flex; /* to make rating and duration appear on the same line */
    gap: 10px; /* space between rating and duration */
}

.certification {
  margin-left: 2px;
  padding: 0 5px;
  border: 1px solid;
  border-radius: 5px;
  font-size: 16px;
}

.tick {
    color: #37bc9b;;
    font-size: 24px; // Increase size
    cursor: not-allowed; /* To disable click through */
    margin-left: 10px; // Add space between year and tick
}

.tick:hover::after {
    content: attr(data-hover); /* Displays the added date on hover */
    position: absolute;
    background-color: white;
    padding: 5px;
    border: 1px solid black;
    margin-left: 10px;
}

.downloadIcon {
    color: #37bc9b;;
    font-size: 24px; // Increase size
    cursor: not-allowed; /* To disable click through */
    margin-left: 10px; // Add space between year and tick
}

.downloadIcon:hover::after {
    content: attr(data-hover) !important; 
    position: absolute !important;
    background-color: white !important;
    padding: 5px !important;
    border: 1px solid black !important;
    margin-left: 10px !important;
}


.search-result {
    cursor: pointer;
    margin-bottom: 10px;
    padding: 10px; /* Adds padding around the edge of each result */
    transition: box-shadow 0.3s ease-in-out; /* Makes the shadow change smoothly */
}
.search-result img {
    vertical-align: middle;
    margin-right: 10px;
}

.search-result:hover {
    background-color: #f8f9fa;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); /* Adds a shadow when hovered over to create a 3D effect */
}
.search-result div {
    margin-left: 10px;
    text-align: left;
}

h1 {
  font-size: 70px;
  font-weight: 600;
  background-image: linear-gradient(to left, #553c9a, #b393d3);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.signin-container {
    display: flex;
    justify-content: center;
}
.UUOsc {
    border-bottom: 1px solid #a8a8a8;
    flex-grow: 1;
    margin-left: 11px;
    margin-right: 11px
}
.UUOsc:first-child {
    margin-left: 0
}

.UUOsc:last-child {
    margin-right: 0
}
.hZRPV {
    align-items: center;
    color: #a8a8a8;
    display: flex;
    flex-shrink: 0;
    font-size: 14px;
    justify-content: center;
    margin-bottom: 13px;
    margin-top: 8px;
    text-transform: lowercase;
    width: 100%
}