* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: sans-serif;
}

:root {
    --background-color: #111827;
    --color-text: #fff;
    --color-title: #ffffff;
    --color-bolder: #1b1b1c;
    --primary-color: #f79d65; /* Define a primary accent color */
    --secondary-background: #061222; /* Consistent background for items/sections */
    --input-background: #222; /* Consistent input background */
    --border-color-invalid: red; /* For validation errors */
}

.dark-theme {
    --background-color: #111827;
    --color-text: #fff;
    --color-title: #9333ea; /* Purple accent for dark theme title */
}

body {
    background: var(--background-color);
    color: var(--color-text); /* Use specific color variables */
    transition: 0.8s;
}

/* --- General Form Styling --- */
.loginbody {
    display: grid;
    place-items: center; /* Centers content horizontally and vertically */
    width: 100%;
    min-height: 100vh; /* Use 100vh to fill the viewport height */
    background: var(--secondary-background); /* Consistent background */
    padding: 20px; /* Add some padding for smaller screens */
}

.login-container {
    display: flex;
    background: linear-gradient(45deg, #002244, #020211);
    border-radius: 12px;
    overflow: hidden;
    width: 90%; /* Adjust overall width */
    max-width: 1000px; /* Limit max width for larger screens */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Add a subtle shadow */
}

.login-box {
    width: 60%;
    padding: 40px;
    background: #020211; /* Inner box background */
    display: flex; /* Use flex for inner content alignment */
    flex-direction: column;
    justify-content: center; /* Center content vertically within the box */
}

.login-box h2 {
    font-size: 28px; /* Larger heading */
    margin-bottom: 8px;
    color: var(--color-title);
    text-align: center; /* Center align headings */
}

.login-box p {
    font-size: 15px;
    color: #bbb;
    margin-bottom: 20px; /* More space below introductory text */
    text-align: center; /* Center align text */
}

.login-box p a {
    color: var(--primary-color);
    text-decoration: underline; /* Make link more obvious */
}

/* Multi-Step Form Specifics */
.step-container {
    display: none; /* Hide all steps by default */
    flex-direction: column; /* Organize content vertically */
    gap: 15px; /* Space between input groups */
}

.step-container.active {
    display: flex; /* Show active step */
}

.step-container h3 {
    font-size: 22px;
    color: var(--color-title);
    margin-bottom: 15px;
    text-align: center;
}

.step-container h4 {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 10px;
}

.step-container .text-muted {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}


.input-group {
    margin-bottom: 15px; /* Space between input groups */
    position: relative; /* For error messages positioning */
}

.input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px; /* Space between label and input */
    color: var(--color-text);
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #333; /* Add a subtle border */
    background: var(--input-background);
    color: white;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease; /* Smooth transition for border color */
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-color); /* Highlight on focus */
}

/* Error states for inputs */
.input-group input.is-invalid,
.input-group select.is-invalid,
.input-group textarea.is-invalid {
    border-color: var(--border-color-invalid); /* Red border for invalid fields */
}

.error-message {
    color: var(--border-color-invalid);
    font-size: 0.8em;
    margin-top: 5px; /* Space between input and error message */
    display: block;
    /* Position relative to input-group if needed for absolute positioning */
}

#password-strength {
    font-size: 0.85em;
    margin-top: 5px;
    color: #bbb; /* Default color */
}

.feedback { /* For password match feedback */
    color: var(--border-color-invalid);
    font-size: 0.85em;
    margin-top: 5px;
}

/* File input specific styling */
input[type="file"] {
    padding: 10px; /* Adjust padding for file input */
    line-height: normal; /* Ensure text aligns properly */
}
input[type="file"]::file-selector-button {
    background-color: var(--primary-color);
    color: black;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
    transition: background-color 0.2s ease;
}
input[type="file"]::file-selector-button:hover {
    background-color: #e08e5a; /* Slightly darker on hover */
}


.remember-me {
    margin: 15px 0;
    display: flex;
    align-items: center;
    color: #bbb; /* Default text color for the group */
}

.remember-me label {
    margin-left: 8px;
    font-size: 14px;
}

.remember-me input[type="checkbox"] {
    width: auto; /* Checkbox should not take full width */
    margin: 0;
    padding: 0;
    height: 16px; /* Adjust size for checkbox */
    width: 16px;
    border: 1px solid #555;
    background: #333;
    -webkit-appearance: none; /* Hide default checkbox */
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    position: relative;
    vertical-align: middle; /* Align with text */
}

.remember-me input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.remember-me input[type="checkbox"]:checked::after {
    content: '✓'; /* Checkmark for checked state */
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    font-size: 12px;
}

.login-box button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    color: #fff;
    background: #f79d65;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.forgot-password-link {
    text-align: right; /* Align to the right */
    margin-top: -10px; /* Pull it up slightly if needed */
    margin-bottom: 20px;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px; /* Space above buttons */
}

.navigation-buttons button {
    flex: 1; /* Make buttons take equal width */
    padding: 12px;
    border: none;
    background: var(--primary-color);
    color: black;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.navigation-buttons button#prevBtn {
    background: #333; /* Different style for previous button */
    color: white;
    margin-right: 10px; /* Space between buttons */
}

.navigation-buttons button#prevBtn:hover:not(:disabled) {
    background: #555;
}

.navigation-buttons button#prevBtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.navigation-buttons button#nextBtn,
.navigation-buttons button#submitBtn {
    background: var(--primary-color);
    color: black;
}

.navigation-buttons button#nextBtn:hover,
.navigation-buttons button#submitBtn:hover {
    background: #e08e5a; /* Slightly darker orange on hover */
}


.divider {
    text-align: center;
    margin: 25px 0; /* More vertical space */
    font-size: 14px;
    color: #bbb;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%; /* Lines extend */
    height: 1px;
    background: #555; /* Color of the lines */
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
  
    color: #020211;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.google-btn:hover {
    background: #333;
    border-color: #888;
}

.google-btn img {
    width: 18px;
    margin-right: 10px;
}

/* --- Info Section Styling --- */
.login-info {
    width: 100%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    color: white; /* Ensure text is visible on the gradient */
}

.info-content {
    max-width: 80%;
    padding: 20px; /* Add internal padding */
}

.headphones-icon {
    font-size: 60px; /* Larger icon */
    margin-bottom: 20px;
    color: var(--primary-color); /* Color the icon */
}

.info-content h2 {
    font-size: 28px; /* Consistent heading size */
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--color-title);
}

.info-content p {
    font-size: 16px;
    color: #ccc; /* Lighter text for better contrast */
    margin-bottom: 30px; /* More space below general text */
    line-height: 1.5; /* Improve readability */
}

.features {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow features to wrap on smaller screens */
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 48%; /* Adjust width to allow two per row with gap */
    flex-grow: 1; /* Allow boxes to grow */
    min-width: 180px; /* Minimum width for small screens */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.feature-box span {
    font-size: 30px; /* Larger emojis */
    display: block; /* Ensure emoji is on its own line */
    margin-bottom: 10px;
}

.feature-box h4 {
    font-size: 18px;
    color: white;
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 0; /* Remove bottom margin here */
}

/* --- Music List (if still used elsewhere) --- */
.music-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px 0;
}

.music-item {
    display: flex;
    width: 100%;
    align-items: center;
    background: var(--secondary-background); /* Consistent background */
    border-radius: 8px;
    overflow: hidden;
    padding: 15px;
    transition: background 0.3s ease;
}

.music-item:hover {
    background: #222;
}

.music-item img {
    width: 70px; /* Slightly smaller image for list item */
    height: 70px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 15px;
}

.music-info {
    flex: 1;
}

.music-info h3 {
    font-size: 16px;
    color: white;
    margin-bottom: 5px;
}

.artist {
    font-size: 14px;
    color: var(--primary-color);
}

.stats {
    font-size: 12px;
    color: #bbb;
}

.music-duration {
    display: flex;
    align-items: center;
    color: #aaa;
    font-size: 14px;
    margin-left: auto; /* Push to the right */
}

.clock-icon {
    width: 14px;
    height: 14px;
    /* If using an actual SVG icon, adjust background or use <img> tag */
    background: url('path/to/your/clock-icon.svg') no-repeat center; /* Update path */
    background-size: contain;
    margin-right: 5px;
}

/* --- Password Toggle Icon Styling --- */
.password-input-wrapper {
    position: relative;
    width: 100%; /* Ensure wrapper takes full width of its parent */
}

.password-input-wrapper input[type="password"],
.password-input-wrapper input[type="text"] {
    padding-right: 40px; /* Make space for the icon */
    width: 100%; /* Ensure input takes full width within the wrapper */
}

.password-toggle-icon {
    position: absolute;
    right: 12px; /* Adjust as needed for spacing from the right edge */
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10; /* Ensure icon is above the input */
    display: flex; /* For better icon centering if needed */
    align-items: center;
    justify-content: center;
    height: 100%; /* Make clickable area taller */
    padding-left: 5px; /* Add some padding on the left if icon touches text */
}

.password-toggle-icon img {
    width: 20px; /* Size of your eye icon */
    height: 20px;
    filter: invert(70%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(150%) contrast(80%); /* Makes icon greyish/white for dark background */
}

/* Optional: Adjust input padding slightly if it looks off */
.input-group input {
    padding: 13px; /* Ensure original padding is consistent */
}

/* Ensure error messages are not pushed by the icon */
.input-group .error-message {
    margin-top: 5px;
}
/* --- Responsive Design --- */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column; /* Stack login-box and login-info vertically */
        width: 95%; /* Use more width on smaller screens */
        border-radius: 8px; /* Slightly smaller border-radius */
    }

    .login-box {
        width: 100%;
        padding: 30px; /* Reduce padding */
    }

    .login-info {
        width: 100%;
        min-height: 250px; /* Give info box a minimum height */
        padding: 20px;
        border-top-left-radius: 0; /* Remove border-radius from top left for stacked layout */
        border-top-right-radius: 0;
        border-bottom-left-radius: 8px; /* Apply to bottom corners */
        border-bottom-right-radius: 8px;
    }

    .login-box h2 {
        font-size: 24px; /* Adjust heading size */
    }

    .step-container h3 {
        font-size: 20px;
    }

    .input-group input,
    .input-group select,
    .input-group textarea {
        padding: 10px; /* Slightly less padding for inputs */
    }

    .navigation-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px; /* Space between stacked buttons */
    }

    .navigation-buttons button#prevBtn {
        margin-right: 0; /* Remove horizontal margin when stacked */
    }

    .feature-box {
        width: 90%; /* Allow feature boxes to take more width, potentially one per row */
        max-width: 300px; /* Limit their max width */
    }

    .divider::before,
    .divider::after {
        width: 30%; /* Shorter lines for divider on small screens */
    }
}

@media (max-width: 480px) {
    .login-box {
        padding: 20px; /* Further reduce padding on very small screens */
    }
    .info-content {
        padding: 10px; /* Reduce padding for info content */
    }
    .feature-box {
        width: 100%; /* Ensure features stack on very small screens */
    }
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
	font-family: sans-serif;
}

:root{
	--background-color: #fff;
	--color-text: #fff;
	--color-title: #9333ea;
	--color-bolder: #1b1b1c;
}
.dark-theme{
	--background-color: #111827;
	--color-text: #fff;
	--color-title: #9333ea;

}
body{
	background: var(--background-color);
	color: var(--color-text);
	color: var(--color-title);
	transition: 0.8s;
	height: 100%;
    margin: 0;
    padding: 0;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
	background-color: #12213b;
    
}
.holder{
    height: auto;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit,300px);
    overflow: hidden;
    border-radius: 6px;
	background-color: #111827;
}
.loginholder{
    background-color: 111827;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    max-width: 360px;
    min-height: 60vh;
	border: 2px solid rgb(0, 0, 0, 0.1);
}
.loginholder form{
    margin-right: 40px;
}
.loginholder #login{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
}
.loginholder input{
    padding: 10px;
    outline: none;
}
.loginholder label{
    color: #fff;
}
.loginholder #submit{
    display: flex;
    align-items: center;
    background: gold;
    padding: .5em 4em;
    border: none;
    font-size: 17px;
    transition: all 0.4s ease;
}

.loginholder #submit:hover{
    background: rgb(255, 255, 255);
}
.container .rightbox{
    display: none;
    justify-content: center;
    background: gold;
    width: 360px;
    height: 550px;
    overflow: hidden;
}
.menusection {
	display: flex;
	width: 100%;

  }
  
  .menusection a {
	color: #fff;
  }
  
  .menudash {
	display: flex;
	flex: 1;
  }
  
  .menuleft {
	display: block;
	justify-content: center;
	width: 250px;
	height: 100vh;
	overflow: hidden;
	background-color: #111827;
	z-index: 1000;
  }
  
  .menuleft h3 {
	color: #fff;
	padding: 26px;
  }
  
  .menuleft ul li {
	padding: 16px;
  }
  
  .menuleft ul li a {
	font-size: 17px;
	display: grid;
	align-items: center;
	padding: 0px 40px;
  }
  
  .menuleft #user {
	align-items: center;
	padding: 10px 0px;
  }
  
  .menuleft img {
	position: absolute;
	width: 17px;
  }
  
  .submit button {
	margin: 29px;
	border: none;
	padding: 1em;
  }
  
  .menuright {
	flex: 1; /* takes remaining space */
	background-color: #f9f9f9; /* or whatever you want */
	overflow: auto;
  }
  .menuright .total{
	display: flex;
	gap:20px;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 0px;
}
.total{
height: 80px;
padding: 20px;
 background-color: #45a049;	
  }
  .menuright .total h2{
	font-size: 17px;
	font-weight: 400;
  }
.topbar{
	display: flex;
	align-items: center;
	padding: 0px 20px;
	width: 100%;
	height: 100px;
	background-color:#fff;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.toggle-button{
	border: none;
	background: none;

}
.toggle-button img{
	display: none;
}
.topmenuholder img{
	padding: 0px 40px;
}
.topmenuholder input{
	padding: 1em 7em;
	outline: none;
	border: 1px solid #e0e0e0;
}
.overview{
	display: grid;
	align-items: center;
	grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
	width: 100%;
	height: 200px;
	background-color:#f3f3f3;

}
.overviewholder{
	color: #fff;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	justify-items: center;
	margin: 10px;
	width: 300px;
	height: 150px;
	border-radius: 8px;
	background-color:#111827;
	
}
.overviewholder img{
	width: 50px;
}
.uploadheader{
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 10vh;
	background-color:rgb(41 48 71);
	
}
.uploadheader #upload{
	color: #fff;
    background-color:rgb(41 48 71);
	margin-left: 10px;
	border: none;
	padding: .5em 0.6em;
	font-size: 17px;
}
.form-container {
	color: #fff;
    padding: 20px;
	min-height: 100vh;
    background-color: #12213b;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    
}

.form-group {
    margin-bottom: 20px;
	color: #fff;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
}

.form-group input[type="text"], .form-group select, .form-group input[type="file"] {
    width: 60%;
    height: 60px;
    padding: 10px;
	border: none;
	outline: none;
    border: 1px solid #ccc;
}
.form-groupstory #textarea{
    width: 60%;
    height: 200px;
    padding: 10px;
	border: none;
	outline: none;
    border: 1px solid #ccc;
}
.AddAdmin #upload{
	padding: 1em 7em;
	outline: none;
	border: 1px solid #e0e0e0;

}
.viewcontent {
	border-collapse: collapse;
	width: 100%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
  }
  
  .viewcontent th, .viewcontent td {
	padding: 15px;
	text-align: left;
	border-bottom: 1px solid #ddd;
  }
  
  .viewcontent th {
	color: #f9f9fa;
	background-color: #12213b;
	position: sticky;
	top: 0;
  }
  
  .viewcontent td {
	color: #12213b;
	background-color: #f9f9fa;
  }
  
  .viewcontent tr:nth-child(even) {
	background-color: #f2f2f2;
  }
  
  .viewcontent tr:hover {
	background-color: #e2e2e2;
  }

.AddAdmin {
    display: flex;
    justify-content: space-between;
}

.AddAdmin button {
	color: #fff;
	border: none;
	padding: 1em;
	border-radius: 4px;
	background: #12213b;
	cursor: pointer;
}
.selectoption{
	background-color: #4CAF50;
	border-radius: 5px;
}
/* Responsive Styles */

@media only screen and (max-width: 768px) {
	.menusection {
	  flex-direction: column;
	}
	.topmenuholder{
		display: flex;
	}
	.toggle-button img{
		display: block;
	}
	.menuleft {
	background-color: #111827;
	  display: none;
	  width: -249px;
	  height: 100vh;
	  position: fixed;
	  top: 0;
	  right: - 300px;
	  transition: left 0.5s;
	}
	.menuright {
	  width: 100%;
	}
	.menuleft.show {
	  display: block;
	  width: 100%;
	  left: 0;
	  margin-top: 84px;
	}
	.toggle-button {
	  display: block;
	}
	.topbar {
	  height: auto;
	  padding: 20px;
	}
	.topmenuholder img {
	  padding: 0px 10px;
	}
	.topmenuholder input {
	  padding: 1em 1em;
	}
	.overview {
	  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
	  height: auto;
	}
	.overviewholder {
	  width: 100%;
	  height: auto;
	  margin: 10px 0px;
	}
	.uploadheader {
	  flex-direction: column;
	  align-items: flex-start;
	}
	.uploadheader #upload {
	  margin-left: 0px;
	  margin-top: 20px;
	}
	.form-container {
	  padding: 10px;
	}
	.form-group input[type="text"], .form-group select, .form-group input[type="file"] {
	  width: 100%;
	  height: auto;
	  padding: 10px;
	}
	.form-groupstory #textarea{
		width: 100%;
		height: 200px;
		padding: 10px;
	}
	.AddAdmin #upload {
	  padding: 1em 3em;
	  width: 100%;
	}
	.uploadheader #upload{
		font-size: 13px;
	}
	.viewcontent {
		overflow-x: auto;
	  }
  }
  .cashout-btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
}

.cashout-btn:hover {
    background-color: #45a049;
}

input[type="number"] {
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    width: 100%;
    max-width: 200px;
    border: 1px solid #ddd;
}

label {
    font-weight: bold;
}

  @media only screen and (max-width: 480px) {
	.menuleft ul li a {
	  font-size: 15px;
	  padding: 0px 20px;
	}
	.menuleft #user {
	  padding: 5px 0px;
	}
	.menuleft img {
	  width: 15px;
	}
	.overviewholder img {
	  width: 30px;
	}
	.form-group label {
	  font-size: 15px;
	}
	.uploadheader #upload{
		font-size: 10px;
	}
	.viewcontent th, .viewcontent td {
		padding: 5px;
		font-size: 14px;
	  }
	  .AddAdmin button {
		width: 100%;
	  }
	  .menuright .total h2 {
		font-size: 12px;
		font-weight: 400;
	}
	.viewcontent th, .viewcontent td {
        font-size: 11px;
    }
	
  }
  @media only screen and (max-width: 320px) {
	.AddAdmin {
	  flex-direction: column;
	}
	.AddAdmin button {
	  margin-top: 10px;
	}
	.viewcontent th, .viewcontent td {
		font-size: 8px;
	  }
	  .topmenuholder input {
        padding: .3em;
		max-width: 120px;
    }
	
  }

  

:root{
	--background-color: #111827;
	--color-text: #fff;
	--color-title: #ffffff;
	--color-bolder: #1b1b1c;
}
.dark-theme{
	--background-color: #111827;
	--color-text: #fff;
	--color-title: #9333ea;

}
body {
    background: var(--background-color);
	color: var(--color-text);
	color: var(--color-title);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}
/* Hide Scrollbars but Allow Scrolling */
.main-content {
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer */
}

.main-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}
/* Completely Hide Scrollbars */
html, body {
    height: 100%;
    overflow: auto; /* Allow scrolling */
    margin: 0;
    padding: 0;
}

/* Ensure Sidebar Content is Scrollable but Hides Scrollbars */
.sidebar, .right-sidebar, .main-content {
    overflow-y: auto; /* Allows scrolling */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer */
}

.sidebar::-webkit-scrollbar, 
.right-sidebar::-webkit-scrollbar, 
.main-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}


/* Container Layout */
.container_main {
    display: flex;
    flex-direction: column; /* Ensure all content is stacked vertically */
    height: 100vh; /* Full height of the viewport */
    overflow: hidden; /* Prevent overflow*/
}

/* Sidebar - Left */
.sidebar {
    width: 300px;
    background: linear-gradient(135deg, #020211, #1f183b);
    padding: 20px;
    position: fixed;
    left: 0;
    top: 80px;
    bottom: 0;
    overflow-y: auto;
}

.profile {
    text-align: center;
    margin-bottom: 20px;
}

.profile img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid white;
}

.profile h2 {
    font-size: 18px;
    margin-top: 10px;
}

nav ul {
    list-style: none;
    margin-top: 15px;
}

.sidebar nav ul li {
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    margin: 5px 0;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

nav ul li:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mini Player */
.mini-player {
    background: linear-gradient(135deg, #020211, #28104e);
    padding: 15px;
    border-radius: 15px;
    color: #fff;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    margin: auto;
}

.mini-player h3 {
    font-size: 16px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

/* Player Content */
.player-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.player-content img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.song-info {
    text-align: left;
}

.song-title {
    font-weight: bold;
    font-size: 14px;
}

.artist-name {
    font-size: 12px;
    opacity: 0.8;
}

/* Controls */
.controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.controls button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.controls button:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Progress Bar */
#progress {
    width: 100%;
    margin-top: 10px;
    appearance: none;
    height: 5px;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
}

#progress::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

/* Time */
#current-time, #duration {
    font-size: 12px;
    opacity: 0.7;
}


/* Main Content */
.main-content {
    margin-left: 300px; /* Space for left sidebar */
    margin-right: 300px; /* Space for right sidebar */
    overflow-y: auto;    /* Allow scrolling within the main content */
    height: 100vh;       /* Full height of the viewport */
    width: calc(100% - 600px); /* Account for left and right sidebars */
    padding: 2px;       /* Padding for content */
    box-sizing: border-box; /* Ensure padding doesn't cause overflow */
}



/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.top-bar input {
    padding: 10px;
    width: 220px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6a5acd, #9370db);
    border-radius: 4px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.hero button {
    background: #ff9800;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    transition: 0.3s;
}

.hero button:hover {
    background: #ffab40;
}

/* Playlist */
.playlist h2 {
    margin-bottom: 10px;
}

.playlist-grid {
    display: flex;
    gap: 15px;
}

.playlist-item img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    transition: 0.3s;
}

.playlist-item img:hover {
    transform: scale(1.1);
}
/* Trending Section */
.trending {
    margin-top: 20px;
}

/* Song List */
.song-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.song-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #1e1e2e;
    padding: 10px;
    border-radius: 10px;
    color: white;
}

.song-item img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.song-details {
    flex: 1;
}

.song-title {
    font-weight: bold;
    font-size: 14px;
}

.artist-name {
    font-size: 12px;
    opacity: 0.7;
}

.song-duration {
    font-size: 12px;
    opacity: 0.7;
}

/* Audio Player */
.audio-player {
    display: flex;
    align-items: center;
    gap: 8px;
}

.play-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.progress-bar {
    width: 100px;
    appearance: none;
    height: 5px;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.progress-bar::-webkit-slider-thumb {
    appearance: none;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}


/* Right Sidebar */
.right-sidebar {
    width: 300px;
    background: linear-gradient(135deg, #020211, #1f183b);
    padding: 20px;
    position: fixed;
    right: 0;
    top: 80px;
    bottom: 0;
    overflow-y: auto;
}

.right-sidebar h2 {
    margin-bottom: 15px;
}

.right-sidebar ul {
    list-style: none;
}

.right-sidebar ul li {
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 5px;
    border-radius: 6px;
    transition: 0.3s;
}

.right-sidebar ul li:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Music Player */
.music-player {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.music-player audio {
    width: 100%;
    margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .container_main {
        grid-template-columns: 1fr;
        height: auto;
    }
    .sidebar, .right-sidebar {
        display: none;
    }
    .main-content {
        width: 100%;
    }
    .main-content {
        margin-left: 0;
        margin-right: 0;
        overflow-y: auto;
        height: 100vh;
    }
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
	font-family: sans-serif;
}
:root{
	--background-color: #061222;
	--color-text: #fff;
	--color-title: #ffffff;
	--color-bolder: #1b1b1c;
}
.dark-theme{
	--background-color: #111827;
	--color-text: #fff;
	--color-title: #9333ea;

}
body{
	background: var(--background-color);
	color: var(--color-text);
	color: var(--color-title);
	transition: 0.8s;
}
/*----head area start----*/

/* Navbar Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px; /* Slightly reduced height for better responsiveness */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #061222;
    z-index: 1000;
    padding: 0 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Adds slight shadow */
    transition: background 0.3s ease-in-out; /* Smooth transition effect */
}

.menu {
    list-style: none;
    display: flex;
    align-items: center;
    /* In mobile, this menu might stack or hide behind a hamburger */
}

.menu li {
    position: relative;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 10px;
    transition: 0.3s;
}

.menu a:hover {
    color: #00aaff;
}

/* Search Bar */
.menu input[type="search"] {
    padding: 8px;
    border: none;
    border-radius: 5px;
    outline: none;
}

.logo h2 a {
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

#check {
    display: none;
}

.checkbtn {
    margin-right: 40px;
    float: right; /* Consider using flexbox for alignment instead of float if possible */
    line-height: 80px;
}

.toggle-btn {
    display: none; /* Hidden by default, likely for desktop */
    margin-right: 20px;
    background: var(--color-title);
    padding: 0.2em 1.2em;
    border-radius: 100vh;
    cursor: pointer;
}

.toggle-btn span {
    color: #111827;
    font-size: 18px;
}

#moon {
    width: 20px;
}

.menu input {
    padding: 0.4em 1em;
    outline: none;
    border: none;
    border-radius: 30px;
    border: .6px solid rgb(168, 168, 168);
}

/* Login/Register & Subscribe Buttons */
.loginregister {
    list-style: none;
    display: flex; /* Make it a flex container to align buttons horizontally */
    align-items: center; /* Vertically align items */
    gap: 10px; /* Space between buttons */
    margin-left: 20px; /* Add some space from the main menu */
}

.loginregister li a {
    font-size: 16px;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    background: #00aaff; /* Default background for these action buttons */
    color: #fff !important; /* Ensure white text, override inline style */
    transition: 0.3s;
    display: inline-block; /* Ensure padding and background apply correctly */
}

.loginregister li a:hover {
    background: #0088cc;
}

/* Optional: Make the Subscribe button stand out more if desired */
.subscribe-btn {
    background: var(--orange-600); /* Use a different color, like orange */
}

.subscribe-btn:hover {
    background: var(--orange-700); /* Darker orange on hover */
}

/* Welcome Section */
.imgpic {
    width: 100%;
    padding: 50px 20px;
    background: url('your-image.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
}

.mainpic h2 {
    font-size: 32px;
    color: #fff;
}

.mainpic p {
    font-size: 18px;
    color: #fff;
}

/*----head area ends----*/

.imgpic {
	background: linear-gradient(#ff00f7, #29293c);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-width: 40vh;
	overflow: hidden;
  }
  
  .impictop {
	display: grid;
	gap: 20px;
	justify-content: center;
	align-items: center;
  }
  
  .mainpic {
	grid-column: 1;
  }
  
  .searchholder {
	grid-column: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
  }
  
  .searchholder input {
	position: relative;
	padding: 1em 1em;
	border: none;
	outline: none;
	border-radius: 20PX;
	width: 100%;
  }
  
  .searchholder button {
	position: absolute;
	padding: 1em;
	margin-left: 140px;
	border: none;
	outline: none;
	border-radius: 20PX;
	background-color: #ffc000;
	color: #fff;
	cursor: pointer;
	width: 10%;
  }
  
  .mainpic h2 {
	display: inline-block;
	color: var(--color-text);
	font-size: 50px;
	font-weight: 600;
  }
  
  .mainpic p {
	color: var(--color-text);
  }
  
  .mainpic span {
	color: #ffc000;
	font-size: 70px;
	font-weight: 600;
  }
/*----new song area start----*/


.container1{
	background: #061222;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	justify-content: center;
	gap: 10px;
	padding: 20px;
	border-top: 2px solid rgb(0, 0, 0, 0.5);
	border-bottom: 2px solid rgb(0, 0, 0, 0.5);
	
}
.containerbox{
	box-shadow: 0px 0px 0px 0.1px #000000;
	background-color: #111827;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 10px;
	overflow: hidden;
	margin: 20px 30px;
	width: 400px;
	height: 150px;

}


.box1{
	margin-left: 10px;
}
.imageholder1{
	width: 140px;
	height: 150px;
	border-radius: 10px;
	margin-left: 40px;
	overflow: hidden;
}
.container img{
	margin-right: 10px;
	width: 100%;
    height: 100%
}

.box1 h3{
	text-transform: uppercase;
	font-size: 17px;
	font-weight: 400;
	color: var(--color-text);
	transition: 0.3s ease;
}
.box1 h3:hover{
	color: var(--color-title);
}
.box1 p{
	text-transform: capitalize;
	color: var(--color-text);
}
.box1 span{
	text-transform: capitalize;
}


.box1 h4{
	display: flex;
	justify-content: center;
	color: #1b1b1b;
	padding: 0.5em 0.3em;
	background: var(--color-title);
	margin-top: 20px;
	font-size: 11px;
	font-weight: 600;
	border-radius: 2px;
	width: auto;
	height: auto;
}

.footer {
    position: relative;
    background-color: #061222;
    width: 100%;
    margin-top: auto;  /* Keeps footer at the bottom */
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;  /* Ensures the footer stays at the bottom */
}

.hoder {
    padding: 20px 0px;
    display: flex;
    justify-content: space-between;
}

.hoder ul li {
    padding: 7px 0px;
}

.hoder ul li a {
    color: var(--color-text);
    transition: 0.3s ease;
}

.footer .hoder a:hover {
    color: var(--color-title);
}

.hoder ul {
    margin-right: 70px;
}

.hoder h2 {
    margin-left: 30px;
}

.footerrights {
    display: grid;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.footerrights p {
    color: var(--color-text);
    padding: 20px 0px;
}

#line {
    display: flex;
    background-color: #545454;
    height: 2px;
    width: 160%;
    margin-left: -90px;
}

/*----most downloded area start----*/

  .artisttext #Download {
	width: 230px;
	margin: 40px 0;
	display: flex;
	background: var(--color-title);
	padding: 0.7em 1em;
	justify-content: center;
	align-items: center;
	border: none;
	border-radius: 4px;
	color: var(--background-color);
  }
  .artistpage {
	width: 100%;
	background: hsl(214, 70%, 8%);
	min-height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 2px solid rgb(0, 0, 0, 0.4);
	border-top: 2px solid rgb(0, 0, 0, 0.4);
  }
  .artistcontaniner {
	color: var(--color-text);
	width: 100%;
	display: grid;
	justify-content: center;
	align-items: center;
	grid-template-columns: repeat(auto-fit, minmax(400px, 200px));
	gap: 20px;
	border-radius: 10px;
	padding: 70px 0px;
  }
  .artistimg {
	justify-content: center;
	align-items: center;
	width: 400px;
    min-height: 50vh;
    border-radius: 10px;
	background-color: rgb(233, 12, 85);
	background: #e0e0e0;
	overflow: hidden;
	border: 0.3px solid rgb(164, 164, 164);
  }
  .detailimghorder {
	width: 100%;
	height: 46vh;
	overflow: hidden;
  }
  .artistimg img {
	width: 100%;
    height: 100%;
  }
  .artisttext {
	padding: 0 20px;
  }
  .artisttext h2 {
	font-weight: lighter;
	font-size: 18px;
	padding: 5px 0;
  }
  .artisttext h3 {
	font-weight: 400;
	font-size: 18px;
	padding: 5px 0;
  }
  .artisttext h4 {
	font-weight: 500;
	font-size: 13px;
  }
 
/*----story page area start----*/
.storycontainer{
    display: flex;
    justify-content: center;
    align-items: center;
     background-color: var(--background-color);
    width: 100%;
     min-height: 84vh;
	 border-top: 1px solid rgb(20, 15, 27);
	 border-bottom: 1px solid rgb(20, 15, 27);
}
.sec3scon{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(366px, 1fr));
	justify-content: center;
	align-items: center;
	width: 100%;
    min-height: 70px;
	gap: 10px;
	margin: 20px;
  }
  

.secholder{
    justify-content: center;
    background-color: #061222;
    width: 380px;
    height: 430px;
    transition: .3s;
    overflow: hidden;
    border-radius: 6px;
    margin: 0 auto;
	border: 2px solid rgb(0, 0, 0, 0.4);
}
.secsbox{
    display: grid;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background-color: #061222;
    width: 350px;
    height: 430px;
    overflow: hidden; 
    transition: .3s; 
}
.secsimg{
	width: 360px;
	height: 300px;
	border-radius: 6px;
	overflow: hidden;
  }
  .secsimg img{
  width: 350px;
  }
  .secsdetails{
	display: flex;
	justify-content: space-between;
	padding: 1em;
	width: 100%;
	height: 160px;
	color: rgb(255, 255, 255);
	overflow: hidden; 
  }
  .secsdetails #pricent{
	color: rgb(255, 255, 255);
  }
#share {
	width: 20px;
	height: 20px;
  }
  .image-container {
	position: relative;
  }
  
  .image-text {
	position: absolute;
	top: 0px;
	left: 30px;
	width: 100px;
	color: #fff;
  }
  
  .timestamp-container {
	display: flex;
	align-items: center;
	position: relative;
	gap: 7px;
	left: 8px;
	padding-bottom: 10px;
  }
.todaysboxholder{ 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
    
}

.story{
	width: 100%;
	height: auto;
	margin: 20px;
}
#storytitle{
	color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 20px;
    padding: 10px 0px;
    background-color: #111827;
}
.story p{
	color: var(--color-text);
}
.secholder h1{
	font-size: 10px;
    margin: 10px;
	color: rgb(255, 255, 255);
}
/*----dashboard area start----*/

.Dashbord{
	position: relative;
	display: flex;
	background: #1b1b1c;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 130px;
}
.Dashbordcontainer{
	display: flex;
	align-items: center;
	
}
.Dashbord h2{
	padding: 0% 70px;
}
.username{
	display: flex;
	align-items: center;
}

.username img{
	width: 50px;
	border-radius: 50%;
}
.username h2{
	color: #ffffff;
	display: flex;
 font-size: 16px;
}
#logout{
	margin-top: 120px;
	background-color: #9333ea;
	transition: all 0.3s;
}
#logout a{
	color: #f7f7f7;
	font-size: 23px;
}
#logout:hover{
	background: #b72121;
}
.Dashbordplace{
display: grid;
grid-template-columns: 200px 1fr;

}
.Dashbordplace #Dashbordholder{
	color: #ff1fb1;
	background: #1b1b1c;
	min-height: 130vh;
	width: 200px;

}
.Dashbordplace img{
	width: 30px;
    border-radius: 50px;
	margin: 0px 10px;
}
.uploadtebleholder input{
	padding: 1em;
	outline: none;
}
#Dashbordholder li{
	border: 1px solid rgb(20, 15, 27);
}
.Dashbordplace ul li {
	padding: 20px 0px;
	display: flex;
	transition: all .3s ease;
	
}
.Dashbordplace ul li a{
	color: #eaeaea;
	transition: 0.4s;

}
#Dashbordholder li:hover{
	background: var(--color-title);
}
.adminsection{
	width: 100%;
	background: #0c080c;
}
.AddAdmin{
	
	display: flex;
	align-items: center;
	
}
.AddAdmin span{
	font-size: 24px;
	font-weight: 600;
	color: var(--color-title);
	text-transform: uppercase;
}
.UserId #ur{
	display: flex;
	background: #1b1b1c;
	padding: 1em 1em;

}
.UserId ul li{
	padding: 0px 70px;
	color: var(--color-text);
}
.adimns ul{
	border: 1px solid rgb(190, 190, 190);
	display: flex;
	padding: 1em 2em;
}
.adimns ul li{
	padding: 0px 50px;
	color: var(--color-bolder);
}
.adimns ul li a{
	color: #1b1b1c;
}
.AddAdmin button{
	color: #ddd;
	border: none;
	padding: 0.6em 1.4em;
	background: var(--color-title);
	border-radius: 6px;
	cursor: pointer;
	
}
.AddAdmin button a{
	color: var(--color-text);
	transition: all 0.3s ease-in;
}
.AddAdmin button a:hover{
	color: var(--color-bolder);
}
.uploadtebleholder table th{
	justify-content: center;
	padding: 0px 60px;

}

.viewcontent {
    border-collapse: collapse;
    width: 100%;
}

.viewcontent th, .viewcontent td {
    border: 1px solid #160a1a;
    text-align: left;
}

.viewcontent th {
    background-color: #36094b;
}

.AddAdmin {
    display: flex;
    justify-content: space-between;
}

.AddAdmin button {
    margin: 0 10px;
}
/*===admin end===*/
.Uploadarea {
	
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;

}
.uploadcontent h2{
	font-size: 17px;
}
.uploadcontent{
	display: flex;
	width: 100%;
	margin: 0px 40px;
}
.uploadtebleholder div{
	display: block;
	margin-top: 20px;
}

.uploadcontent #Title{
	outline: none;
	width: 267px;
	height: 40px;
	border-radius: 4px;
	border: 0.3px solid rgb(164, 164, 164);
}
.uploadcontent #ArtistName{
	outline: none;
	width: 170px;
	height: 40px;
	border-radius: 4px;
	border: 0.3px solid rgb(164, 164, 164);
}
.Generoption{
	margin-top: 10px;
	margin-left: 50PX;
}
#Gener{
	outline: none;
	width: 184px;
	height: 40px;
	border-radius: 4px;
	border: 0.3px solid rgb(164, 164, 164);
}
#songsupload{
	outline: none;
	width: 200px;
	height: 200px;
	border-radius: 4px;
	border: 0.3px solid rgb(164, 164, 164);
}
#songartwork{
	outline: none;
	width: 200px;
	height: 200px;
	border-radius: 4px;
	border: 0.3px solid rgb(164, 164, 164);
}

/*----Loginform area start----*/
.Loginform{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	background: var(--color-bolder);
}
.Loginholder{
	display: flex;
	justify-content: center;
	width: 300px;
	height: 400px;
	padding-top: 50px;
	border-radius: 10px;
}
.Loginholder input{
	
	width: 200px;
	height: 30px;
	border: none;
	outline: none;
}
.Loginholder input{
	border-bottom: 1px solid rgb(164, 164, 164);
}
.Login p{
	font-size: 12px;
	padding-top: 10px;
	color: var(--color-bolder);
}
#loginuser{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 30px;
	font-weight: 700;
	padding-bottom: 30px;
}
#loginbtn{
	margin-top: 10px;
	border: none;
	background: var(--color-bolder);	
	padding: 1em 6em;
	border-radius: 8px;
	text-transform: uppercase;
}
#loginbtn a{
	color: var(--color-text);
}
#loginpassword{
 padding-left: 100px;
 color: #cf4615;
}
.form-container {
	width: 700px;
    margin: 40px auto;
    padding: 20px;
    background-color: #1b1b1c;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
}

.form-group input[type="text"], .form-group select, .form-group input[type="file"] {
    width: 100%;
    height: 40px;
    padding: 10px;
    border: 1px solid #ccc;
	border-radius: 10px;
}

.AddAdmin {
    text-align: center;
}

.AddAdmin button[type="submit"] {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.AddAdmin button[type="submit"]:hover {
    background-color: #3e8e41;
}
/*----Loginform area end----*/

.checkbtn img{
	display: none;
}
@media (max-width:1100px){
	.container{
		display: grid;
		justify-content: center;
	}
	.menu li {
		font-size: 14px;
		padding: 0px 8px;
	}
	.mainpic h2{
		font-size: 40px;
	}
	
}
@media (max-width:850px){
	.container{
		display: grid;
		justify-content: center;
	}
.containerbox{
	height: 170px;
    width: 500px;
}
    .box1 p{
		font-size: 13px;
	}

	#Downlond {
		display: flex;
		font-size: 10px;
		font-weight: 600;
		border-radius: 2px;
		width: auto;
		height: auto;
	}

	.box1 h3 {
		text-transform: uppercase;
		font-size: 11px;
		font-weight: 400;
		color: var(--color-text);
		transition: 0.3s;
	}
	.checkbtn img{
		display: block;
		float:left;
		margin-left: 50px;
	}
	.menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        width: 100%;
        background-color: #111827;
        top: 50px;
        left: 100%; /* Off-screen initially */
        text-align: center;
        padding-top: 20px;
        transition: all 0.5s ease-in-out;
    }

    /* When active, slide into view */
    .menu.active {
        left: 0;
    }

    .menu li {
        margin: 15px 0;
    }
	.header {
        justify-content: center; /* Center the content */
        padding: 0 10px; /* Adjust padding for smaller screens */
    }

    .logo {
        position: absolute; /* Keep logo centered */
        left: 50%;
        transform: translateX(-50%); /* Center logo horizontally */
    }
	.checkbtn {
        position: absolute; /* Keep the check button in the top-right corner */
        left: 0;
        right: 20px; /* Position it at the right */
        top: 50%;
        transform: translateY(-50%); /* Center vertically */
    }

    .checkbtn {
        display: block;
        cursor: pointer;
    }


    /* Ensure login/register remains visible */
    .loginregister {
        position: absolute;
        right: 20px;
        top: 15px;
    }
}
	  
	  #check:checked ~ .menu {
		left: 0;
		display: block;
	  }
	  
	  .menu li {
		display: block;
		padding: 8px;
	  }
	  
	  .menu li a {
		font-size: 15px;
	  }
	  
	#line{
		width: 130%;
		margin-left: -30px;

	}
	.footerrights p{
		font-size: 11px;
	}
	.mainpic h2{
		font-size: 20px;
	}
	.mainpic span{
		font-size: 40px;
	
}

  
  .artistimg {
	justify-content: center;
	align-items: center;
	width: 100%;
    min-height: 40vh;
  }

.artistimg img{
	width: 100%;
    object-fit: cover;
}
.imgpic {
    width: 100%;
}
.impictop {
    margin-top: 60px;
}



@media (max-width:650px){
	.containerbox{
		height: 120px;
        width: 300px;
	}
	.imgpic {
		width: 100%;
		overflow: hidden;
	}
	
	.artistcontaniner {
		width: 100%;
		grid-template-columns: repeat(auto-fill, minmax(100%, 200px));
		}
}

@media (max-width:450px){
	
	.hoder{
		font-size: 10px;
	}
    #line {
        width: 60%;
        margin-left: 1px;
    }
	.toggle-btn {
	    font-size: 10px;
		margin-right: 20px;
		padding: 0.2em 1.2em;
}
.toggle-btn span {
    font-size: 10px;
}
     #moon{
	width: 10px;
}
.container1{
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,200px));
	justify-content: center;
	width: 100%;
	
}
.sec3scon {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 70px;
    gap: 10px;
    margin: 0px;
}
.secholder {
	width: 100%;
    height: 500px;
	border-radius: 0px;
	margin: 0;
}
.todaysboxholder {
    width: 100%;
    gap: 10px;
}
.secsimg {
    width: 100%;
    height: 370px;
	border-radius: 0;
    overflow: hidden;
}
.secsbox {
    width: 100%;
    height: 500px;
    overflow: hidden;
    transition: .3s;
}
.secsimg img {
    width: 100%;
		height: auto;
		object-fit: cover;
	
}
.secsdetails {
    width: 100%;
    height: 90px;
}
.checkbtn img{
	margin-left: 10px;

}
.imgpic{
	display: none;
}
@media (max-width:300px){
	
}.toggle-btn {
		display: none;
	    font-size: 10px;
		margin-right: 20px;
		padding: 0.2em 1.2em;
}
.toggle-btn span {
    font-size: 10px;
}
.header {
    justify-content: left;

}
}
@media (max-width: 768px) { /* Adjust breakpoint as per your menu's collapse point */
    .checkbtn {
        display: block; /* Show hamburger menu button */
    }

    .menu {
        position: fixed;
        width: 100%;
        height: 100vh; /* Full viewport height for overlay menu */
        background: #061222; /* Dark background for mobile menu */
        top: 70px; /* Below the header */
        left: -100%; /* Hide off-screen initially */
        text-align: center;
        flex-direction: column; /* Stack menu items vertically */
        transition: all 0.5s ease;
        padding-top: 20px; /* Add some top padding */
    }

    .menu li {
        margin: 20px 0; /* Space between stacked menu items */
    }

    .menu a {
        font-size: 20px; /* Larger font size for mobile */
    }

    .menu input[type="search"] {
        width: calc(100% - 40px); /* Adjust width to fit mobile screen with padding */
        margin-top: 10px;
    }

    #check:checked ~ .menu {
        left: 0; /* Slide in menu when checkbox is checked */
    }

    .loginregister {
        /* When menu is open, these also need to stack or adjust */
        position: absolute; /* Position relative to .header or main container */
        bottom: 20px; /* Place at the bottom of the mobile menu */
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column; /* Stack buttons vertically in mobile */
        width: calc(100% - 40px); /* Adjust width */
        margin: 0; /* Remove horizontal margin */
    }

    .loginregister li {
        width: 100%; /* Make list items full width */
        margin-bottom: 10px; /* Space between stacked buttons */
    }
    
    .loginregister li:last-child {
        margin-bottom: 0;
    }

    .loginregister li a {
        width: 100%; /* Make buttons full width */
        box-sizing: border-box; /* Include padding in width */
    }

    .toggle-btn {
        display: flex; /* Show dark mode toggle button on mobile */
        align-items: center;
        gap: 5px;
    }
}
