@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* Importing other CSS files */
@import url('header.css');
@import url('footer.css');

@import url('index.css');
@import url('show.css');
@import url('shows.css');
@import url('upcoming.css');
@import url('profile.css');
@import url('person.css');
@import url('favorites.css');

@import url('login.css');
@import url('signup.css');
@import url('forgot-password.css');
@import url('reset-password.css');

:root {
    /* --primary-color: #04b174;  */
    --primary-color: #1b74cc; 
    --primary-bg-color: #000000;
    --Secondary-bg-color: #414141;
    --body-text-color: #ffffff;

}
/* style.css */ 
body {
    font-family: "Roboto", sans-serif;
    background-color: var(--primary-bg-color);
    /* background-color: var(--body-text-color); */
    color: var(--body-text-color);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2 {
    margin-bottom: 10px;
}

.site-content-wrapper{
    padding-top: 50px;
}

/* Button styling */
input[type="submit"] {
    padding: 8px 16px;
    margin: 10px 0;
    cursor: pointer;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: var(--primary-color);
}

/* Success/Error message styles */
.message {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.success {
    background-color: #28a745;
    color: white;
}

.error {
    background-color: #dc3545;
    color: white;
}


.remove-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    margin-top: 10px;
}

.remove-btn:hover {
    background: var(--primary-color);
    filter: brightness(90%);
}

.success {
    color: green;
    font-weight: bold;
    padding: 10px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    margin-bottom: 10px;
}

.error {
    color: red;
    font-weight: bold;
    padding: 10px;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    margin-bottom: 10px;
}


/* Container for search (Center aligned) */
.search-container .search-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 225px;
  position: relative;
  margin-right: 10px;
}
@media (max-width: 768px) {
    .search-container .search-form {
        margin-right: 0;
    }
}

/* Search input styling */
.search-input {
    width: 100%;
    padding: 3px 35px 3px 10px;
    font-size: 16px;
    border-radius: 30px;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
    border: none;
}

.search-input:focus {
  border-color: var(--primary-color);
}

/* Button with flat icon */
.search-button {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    background-color: transparent;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.search-button:hover {
  /* background-color: var(--primary-color); */
  transform: scale(1.2);
}

.search-button:active {
  transform: scale(0.95);
}

.search-icon {
  fill: var(--primary-color);;
  width: 20px;
  height: 20px;
  transition: fill 0.3s ease;
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
