* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body 
{
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-image: url(../images/retroBG.jpg) !important;
    background-position: center;
    background-size: cover;
    height: 100vh;
    font-family: 'Lato', sans-serif;
}


header 
{
    background-color: #333;
    position: fixed; /* Keep navbar fixed at the top */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999; /* Ensure the navbar is above other content */
}

/* ///////////////////////////////// */
/* Navbar styling */
.navbar 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px; /* Default padding */
    background: linear-gradient(135deg, #fcb045, #fd1d1d); /* Fire-like gradient */
    height: 60px;
    width: 100%;
    border-radius: 20px;
}

/* Logo styling */
.navbar .logo img {
    width: 150px;
    height: auto;
}

.logo a {
    color: white;
    text-decoration: none;
}

/* Navigation links styling */
.nav-links 
{
    list-style: none;
    display: none; /* Hidden by default */
    width: 100%;
    background-color: #ffcc00;
    align-items: center;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 60px;
    left: 0;
    border-radius: 8px;
}

/* Display links when the menu is toggled */
.nav-links.active {
    display: flex;
    flex-direction: column;
}

/* Navigation links style */
.nav-links li {
    text-align: center;
    margin: 0;
}

.nav-links a 
{
    color: #000000;
    text-decoration: none;
    padding: 14px;
    display: block;
    font-family: "Chicle", serif;
    font-weight: 400;
    font-size: 34px;
    transition: color 0.3s ease;
}

/* Hover effect for navigation links */
.nav-links a:hover 
{
    color: #ffffff;
    background-color: #ff4500;
    border-radius: 8px;
}

/* Menu toggle button styling */
.menu-toggle {
    display: none; /* Hidden by default */
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    background: white;
    height: 3px;
    width: 25px;
    margin: 3px 0;
    border-radius: 2px;
}

/* Login Page Styles */
.login h2 {
    color: #fff;
    margin-bottom: 10px;
}
.login-page 
{
    font-family: "Chicle", serif;
    font-weight: 400;
    background-size: cover;
    height: 100vh; 
    display: flex;
    flex-direction: column;  
    justify-content: flex-start;  
    align-items: center; 
    padding: 20px;  
    overflow: hidden;
    z-index: 1; 
  }
  
  /*container (login box) */
body.login-page .login 
{
background: linear-gradient(#fd1d1d, #fcb045);
padding: 40px;
border-radius: 12px;
box-shadow: 0 4px 16px rgba(253, 29, 29, 0.3), 0 4px 32px rgba(252, 176, 69, 0.3);
width: 400px;
text-align: center;
z-index: 1;
margin-top: 70px; 
box-shadow: 0 2px 4px rgba(255, 69, 0, 0.8), 0 4px 8px rgba(255, 140, 0, 0.6), 0 8px 16px rgba(255, 215, 0, 0.4);
}
  
/* Status message */
body.login-page .status-message {
background: radial-gradient(circle, #fd1d1d, #fcb045); /* Circular gradient */
color: white;
padding: 12px;
margin-bottom: 20px;
border-radius: 8px;
text-align: center;
box-shadow: 0 0 15px rgba(253, 29, 29, 0.6), 0 0 15px rgba(252, 176, 69, 0.6);
}

/* Form Styling */
body.login-page .login-form {
display: flex;
flex-direction: column;
gap: 16px;
}

body.login-page .login-form label {
font-size: 14px;
color: #fcb045;
text-transform: uppercase;
letter-spacing: 1px;
}

body.login-page .login-form input {
padding: 12px;
font-size: 16px;
border: 2px solid #fd1d1d;
background-color: rgba(255, 255, 255, 0.1);
color: white;
margin-bottom: 12px;
transition: border-color 0.3s;
}

body.login-page .login-form input:focus {
border-color: #fcb045;
outline: none;
}

body.login-page .login-form input[type="submit"] {
background: #fcb045;
color: black;
font-weight: bold;
border: none;
cursor: pointer;
padding: 12px;
border-radius: 8px;
transition: background-color 0.3s;
}

body.login-page .login-form input[type="submit"]:hover {
background: radial-gradient(circle, #fcb045, #fd1d1d); 
color: #ffffff;
}

/* Login option */
body.login-page .login-options {
margin-top: 20px;
color: #fd1d1d;
}

body.login-page .login-options a {
color: #fff;
font-weight: bold;
text-decoration: none;
font-size: 14px;
transition: color 0.3s ease;
}

body.login-page .login-options a:hover 
{
color: #fd1d1d; 
}
  


/* When the .active class is added to .nav-links, show the mobile menu */
.nav-links.active 
{
    display: flex;
    flex-direction: column;
    top: 80px;
    margin-top: 10px; 
    z-index: 999;
}

/* vinyl page */
.vinyl 
{
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-around; 
    gap: 20px; 
    padding: 20px;
}

.vinyl div 
{
    background: radial-gradient(circle, #fd1d1d, #fcb045);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease-in-out;
    width: 250px; /* Fixed width for albums */
    flex-grow: 1; 
    max-width: 300px; 
    box-sizing: border-box; 
}

.vinyl div img 
{
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.vinyl div:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.vinyl div h2 
{
    color: #fff;
    font-size: 1.5em;
    margin-top: 10px;
    font-family: "Special Elite", serif;
}

.vinyl div span 
{
    display: block;
    color: #ffffff;
    margin-top: 5px;
}

.vinyl div a 
{
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.vinyl div a:hover {
    background-color: #fcb045;
    color: #000;
}

/* //////////////////////////////////// */
/* media queries */
@media (max-width: 768px) 
{
    /* smaller screens */
    .vinyl div {
        width: 200px; 
        padding: 15px;
    }

    .vinyl div h2 {
        font-size: 1.3em;
    }

    .vinyl div a {
        padding: 8px 16px;
    }

    .vinyl div img {
        width: 90%;
    }
    
}

@media (max-width: 480px) 
{
    /* For mobile screens */
    .vinyl div {
        width: 100%; 
        padding: 10px;
        margin: 10px 0; 
    }

    .vinyl div h2 {
        font-size: 1.2em;
    }

    .vinyl div a {
        padding: 6px 12px;
    }

    .vinyl div img {
        width: 100%;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) 
{
    .menu-toggle {
        display: flex; 
    }

    /* navigation links as a fixed menu */
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #ffcc00;
        
    }
    .nav-links a {
        font-size: 28px;
        padding: 12px;
    }
}

/* Larger screen */
@media (min-width: 768px)
 {
    .navbar {
        padding: 0 40px;
    }

    .nav-links {
        display: flex; 
        flex-direction: row; 
        position: static; 
        width: auto; 
        background-color: transparent; 
    }

    .nav-links li 
    {
        margin: 0 10px; 
    }

    .menu-toggle {
        display: none; /* Hide the hamburger menu on desktop */
    }

    .nav-links a {
        padding: 14px 20px; 
        border-radius: 4px; 
    }

    .nav-links a:hover {
        background-color: #ff4500; 
        color: #ffffff;
    }
}

/* //////////////////////////////////////////// */

input, button, textarea 
{
    border: 2px solid rgba(0, 0, 0, 0.6);
    background-image: none;
    /* background-color: #dadad3; */
    box-shadow: none;
    padding: 5px;
    border-radius: 10px;
  }
input:focus, button:focus, textarea:focus 
{
    outline: none;
  }
  
textarea {
    min-height: 100px;
    resize: vertical;
  }
  
button {
    cursor: pointer;
    font-weight: 500;
  }
  
.feedback-card 
{
    border: 1px solid black;
    width: 1000px;
    background-color: #fff;
    margin: 0 auto;
    box-shadow: -0.6rem 0.6rem 0 rgba(29, 30, 28, 0.26);
  }
.feedback-header 
{
    text-align: center;
    padding: 8px;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid black;
  }
.feedback-body 
{
    padding: 20px;
    display: flex;
    flex-direction: column;
  }
.feedback-body_name
  {
    margin-top: 10px;
  }
.feedback-body__message 
{
    margin-top: 10px;
  }
.feedback-body button {
    margin-top: 10px;
    align-self: flex-end;
  }

.feedback-body__submit:hover
  {
    /* background-color: #F5C0DE; */
    background-color: #d0836e;
    color: #fff;
  }

.register-page 
{
width: 100%;
max-width: 500px;  
margin: 0;  
background: linear-gradient(135deg, #ff7a7a, #fcb045);
background-size: 400% 400%;
animation: gradientAnimation 6s ease infinite;
padding: 20px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(255, 122, 122, 0.2), 0 4px 8px rgba(252, 176, 69, 0.3);
color: #fff;
text-align: center;
z-index: 1;
box-shadow: 0 2px 4px rgba(255, 69, 0, 0.8), 0 4px 8px rgba(255, 140, 0, 0.6), 0 8px 16px rgba(255, 215, 0, 0.4);
margin-top: 70px;
}



@keyframes gradientAnimation 
{
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ///////////////////////////// */

.register-header 
{
    font-size: 32px;
    /* color: #fff; */
    color: #000000;
    /* text-shadow: 0 0 10px rgba(0, 255, 255, 0.6), 0 0 20px rgba(255, 0, 255, 0.6); */
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Form styling */
.register-form 
{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.register-form label 
{
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Input fields */
.register-form input {
    /* padding: 12px; */
    font-size: 16px;
    border: 2px solid #ff914d;
    border-radius: 8px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-bottom: 10px;
    transition: border-color 0.3s ease;
}

.register-form input:focus 
{
    border-color: #fff;
    outline: none;
}

/* Submit button */
.register-form input[type="submit"] 
{
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.register-form input[type="submit"]:hover {
    background-color: #d8000c;
    color: white;
}

/* Status message */
.status-message 
{
    background-color: #fff;
    color: #d8000c;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 10px rgba(255, 0, 255, 0.3);
}

/* Login options */
.login-options 
{
    text-align: center;
    margin-top: 20px;
    color: #fff;
}

.login-options a {
    /* color: #fff; */
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.login-options a:hover 
{
    color: #fff;
    text-decoration: underline;
}

.login-options a span 
{
    font-style: italic;
    text-decoration: none;
}


/* search function */
.search-function
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-function input[type="submit"]
{
    background-color: #000;
    color: #fff;
}

.search-function input[type="submit"]:hover
{
    background-color: #f17500;

}

/* ////////////////////////////////////// */

/* moreInfo CSS */
#album-details {
    padding: 30px;
    text-align: center;
    background-color: #1c1c1c; 
    margin: 20px auto;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    color: #fff; 
    font-family: 'Lato', sans-serif;
    box-shadow: 0 2px 4px rgba(255, 69, 0, 0.8), 0 4px 8px rgba(255, 140, 0, 0.6), 0 8px 16px rgba(255, 215, 0, 0.4);
}

#album-details a 
{
    display: inline-block;
    margin-bottom: 20px;
    color: #fcb045;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

#album-details a:hover {
    color: #ff7a7a;
}

/* Vinyl Style Title */
#album-details p:first-of-type 
{
    font-size: 2em;
    font-weight: bold;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fcb045; 
}

/* Album Description */
#album-details p {
    font-size: 1.1em;
    margin-top: 15px;
    line-height: 1.6;
    color: #ddd; 
    font-family: inherit;
}

/* Vinyl Record Image Styling */
#album-details img {
    width: 250px; 
    height: 250px;
    border-radius: 50%; /* Circular image */
    border: 8px solid #fcb045; 
    margin-top: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
}

#album-details img:hover {
    transform: rotate(10deg); /* Slight rotation on hover for vinyl effect */
}

/* Vinyl Record Texture */
/* #album-details::before { 
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://www.transparenttextures.com/patterns/old-map.png');
    background-repeat: repeat;
    opacity: 0.1; 
    border-radius: 15px;
    z-index: -1; 
}*/


/* ///////////////////////////////////// */
/* media quer */
@media (max-width: 768px) 
{
    #album-details 
    {
        margin: 10px;
        padding: 20px;
    }

    #album-details p:first-of-type {
        font-size: 1.8em;
    }

    #album-details p {
        font-size: 1em;
    }

    #album-details img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) 
{
    #album-details 
    {
        padding: 15px;
    }

    #album-details p:first-of-type {
        font-size: 1.6em;
    }

    #album-details p {
        font-size: 0.9em;
    }

    #album-details img {
        width: 180px;
        height: 180px;
    }
}


/* //////////////////////////// */

/* vinyl2 */
.vinyl2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 30px;
    margin: 0 auto;
    /* max-width: 1000px; */
    gap: 20px;
}

.vinyl2 div {
    background-color: #222;
    color: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    width: 250px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 2px 4px rgba(255, 69, 0, 0.8), 0 4px 8px rgba(255, 140, 0, 0.6), 0 8px 16px rgba(255, 215, 0, 0.4);
}

.vinyl2 div:hover 
{
    transform: scale(1.05);
}

.vinyl2 h2 
{
    font-family: "Rubik Vinyl", serif;
    font-size: 1.2em;
    /* color: #ea713d; */
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    word-wrap: break-word; /* Ensure text wraps properly */
}

.vinyl2 span {
    font-size: 1.1em;
    color: #ddd;
    margin-bottom: 15px;
}

.vinyl2 img 
{
    width: 200px;
    height: 200px;
    border-radius: 50%; 
    border: 6px solid #ea713d; 
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.vinyl2 img:hover {
    transform: rotate(10deg); 
}

.vinyl2 a 
{
    color: #fff; 
    font-size: 1.1em;
    text-decoration: none;
    font-weight: bold;
    background-color: #ea713d; 
    padding: 10px 20px; 
    border-radius: 25px; 
    display: inline-block; 
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: auto; 
    text-align: center; 
}

.vinyl2 a:hover {
    background-color: #f4deb3;
    color: #222; 
}

/* /////////////////////////////////////// */
/* media queries */
@media (max-width: 768px) 
{
    .vinyl2 {
        justify-content: center;
    }

    .vinyl2 div 
    {
        width: 220px;
    }

    .vinyl2 h2 {
        font-size: 1.5em;
    }

    .vinyl2 span {
        font-size: 1em;
    }

    .vinyl2 img 
    {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) 
{
    .vinyl2 
    {
        padding: 15px;
    }

    .vinyl2 div 
    {
        width: 100%;
    }

    .vinyl2 h2 {
        font-size: 1.3em;
    }

    .vinyl2 span {
        font-size: 0.9em;
    }

    .vinyl2 img 
    {
        width: 150px;
        height: 150px;
    }
}




/* adminDashboard CSS */

.dashboard-overview 
{
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(255, 69, 0, 0.8), 0 4px 8px rgba(255, 140, 0, 0.6), 0 8px 16px rgba(255, 215, 0, 0.4);

}

.dashboard-overview h2 
{
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.overview-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.overview-stats div {
    padding: 10px 20px;
    background-color: #eaeaea;
    border-radius: 8px;
    font-size: 1.2rem;
    color: #555;
}

/* Manage Albums Section */
.manage-albums {
    margin-bottom: 40px;
}

.manage-albums h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000000;
}

.album-list 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.album-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(255, 69, 0, 0.8), 0 4px 8px rgba(255, 140, 0, 0.6), 0 8px 16px rgba(255, 215, 0, 0.4);
    padding: 20px;
    text-align: center;
}

.album-item h3 
{
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #000000;
}

.album-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.album-item h4 
{
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #666;
}

.album-item span {
    display: block;
    margin-bottom: 10px;
    color: #777;
    font-size: 0.9rem;
}

/* Action Links and Buttons */
.album-item a,
.album-item button 
{
    display: inline-block;
    margin: 5px 10px;
    padding: 8px 12px;
    font-size: 0.9rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
}

.album-item a 
{
    background-color: #ff4d4d;
    color: #fff;
    transition: background-color 0.3s ease;
}

.album-item a:hover {
    background-color: #e60000;
}

.album-item button {
    background-color: #4caf50;
    color: #fff;
    transition: background-color 0.3s ease;
}

.album-item button:hover {
    background-color: #388e3c;
}

/* Manage Artists Section */
.manage-artists 
{
    margin-bottom: 40px;
}

.manage-artists h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #444;
}

.manage-artists a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #ff6600;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.manage-artists a:hover 
{
    background-color: #e4b77d;
}

/* User Management Section */
.user-management {
    margin-bottom: 40px;
}

.user-management h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #444;
}

.user-list 
{
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #666;
}


/* table css */
table 
{
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

thead 
{
    background-color: #ffad33;
    color: #000000;
}

th, td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
}

th {
    font-size: 1.1em;
    font-weight: bold;
}

td a {
    color: #6c5b7b;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

td a:hover {
    color: #ffcc00;
}

tbody tr:hover 
{
    background-color: #f1f1f1;
    cursor: pointer;
}

/* Styling the Action Links */
td a {
    padding: 5px 10px;
    margin: 0 5px;
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: background-color 0.3s ease;
}

td a:hover {
    background-color: #ffcc00;
    color: #ffffff;
}

/* media quer for table */
@media (max-width: 768px) {
    table {
        width: 95%;
    }

    th, td {
        padding: 10px;
        font-size: 0.9em;
    }

    td a 
    {
        font-size: 0.9em;
    }
}

/* //////////////////////////////////////// */
/* upload page */
.upload 
{
    width: 70%;
    margin: 50px auto;
    background: linear-gradient(135deg, #ffad33, #ffcc00); 
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(255, 165, 0, 0.2), 0 4px 12px rgba(255, 223, 102, 0.3);
    border: 5px solid #ffcc66; 
    color: #000000;
}

.upload h1 
{
    text-align: center;
    font-size: 3em;
    color: #000000; 
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); 
    font-weight: bold;
}

.uploadVinyl {
    display: flex;
    flex-direction: column;
    gap: 25px;
}


.uploadVinyl label 
{
    font-size: 1.2em;
    color: #d40000; 
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); 
}

/* Input fields styles */
.uploadVinyl input[type="text"],
.uploadVinyl input[type="file"],
.uploadVinyl textarea 
{
    padding: 15px;
    font-size: 1.1em;
    border: 2px solid #a0a0a0; 
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
    background-color: #f7f7f7; 
    transition: all 0.3s ease;
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* Focus effect for input fields */
.uploadVinyl input[type="text"]:focus,
.uploadVinyl input[type="file"]:focus,
.uploadVinyl textarea:focus {
    border-color: #8ec5fc; 
    outline: none;
    box-shadow: 0 0 10px rgba(142, 197, 252, 0.5); 
}

/* Textarea specific styles */
.uploadVinyl textarea {
    height: 160px;
    resize: vertical;
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
}

/* Submit button styles */
.uploadVinyl input[type="submit"] {
    background-color: #000;
    color: #ffffff;
    border: none;
    padding: 18px 35px;
    font-size: 1.2em;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    margin: 5px;
}

.uploadVinyl input[type="submit"]:hover {
    background-color: #ffcc00;
    color: #000;
    transform: scale(1.05);
}

/* User uploads section */
h1 + h1 {
    text-align: center;
    font-size: 2.5em;
    margin-top: 50px;
    color: #333;
    font-weight: bold;
}

.uploadVinyl input[type="text"],
.uploadVinyl input[type="file"],
.uploadVinyl textarea {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* mq fo upload */
@media (max-width: 768px) {
    .upload {
        width: 90%;
    }

    .uploadVinyl 
    {
        width: 100%;
    }
}

/* ////////////////////////////////////////////////// */
/* footer style */
.footer_container 
{
    width: 100%; 
    background: linear-gradient(135deg, #fd1d1d, #fcb045);
    padding: 15px 20px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    box-sizing: border-box;
    margin-top: auto; 
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 0; 
}

.footer-logo-img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.footer-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social .social-icon 
{
    background-color: #000; 
    color: #fff; 
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 50%;
    font-size: 1.2em;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.footer-social .social-icon:hover 
{
    background-color: #ffad33;
}


/* Copyright Section */
.footer-copyright 
{
    font-size: 0.9em;
    color: #ffffff;
}

.footer-copyright p 
{
    margin: 0;
}

/* /////////////////////////////////// */

/*UPDATED Album Management Container */
.album-container 
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 30px;
    gap: 20px;
}

/* Album Box */
.album-box 
{
    background-color: #ff6600;
    color: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    width: 250px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.993), 0 4px 8px rgba(255, 140, 0, 0.6), 0 8px 16px rgba(255, 215, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hover Effect */
.album-box:hover 
{
    transform: scale(1.05);
}

/* Album Title */
.album-box h3 
{
    font-family: "Rubik Vinyl", serif;
    font-size: 1.2em;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    word-wrap: break-word;
}

/* Album Description & Artist Name */
.album-box p {
    font-size: 1em;
    color: #ddd;
    margin-bottom: 10px;
    max-width: 90%;
}

/* Album Image */
.album-box img 
{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 6px solid #c7e738;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

/* Image Hover Effect */
.album-box img:hover {
    transform: rotate(10deg);
}

/* Action Buttons */
.album-box a 
{
    color: #000000;
    font-size: 1.1em;
    text-decoration: none;
    font-weight: bold;
    background-color: #c7e738;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: auto;
    text-align: center;
    width: 80%;
    margin: 5px;
}

/* Delete Button */
.album-box a.delete 
{
    background-color: #dc3545;
}

.album-box a.delete:hover {
    background-color: #a71d2a;
}

/* Upload Button */
.album-box a.upload {
    background-color: #28a745;
}

.album-box a.upload:hover 
{
    background-color: #218838;
}

/* Hover Effect for Buttons */
.album-box a:hover 
{
    background-color: #f4deb3;
    color: #222;
}

/* Upload New Album Button */
.upload-new-album 
{
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 25px;
    margin-top: 20px;
    display: block;
    width: 200px;
    text-align: center;
    transition: background-color 0.3s ease;
    margin: 10px;
}

.upload-new-album:hover {
    background: #218838;
}

/* Responsive Design */
@media (max-width: 768px) 
{
    .album-container {
        justify-content: center;
    }

    .album-box 
    {
        width: 220px;
    }

    .album-box h3 
    {
        font-size: 1.5em;
    }

    .album-box p {
        font-size: 1em;
    }

    .album-box img 
    {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) 
{
    .album-container 
    {
        padding: 15px;
    }

    .album-box 
    {
        width: 100%;
    }

    .album-box h3 
    {
        font-size: 1.3em;
    }

    .album-box p 
    {
        font-size: 0.9em;
    }

    .album-box img 
    {
        width: 150px;
        height: 150px;
    }
}
