/*
 ©Copyright 2025 MetaDJ.live™ - Proprietary and Confidential
*/

/* count */
.count {
   position: absolute;
   top: 13%;
   left: 27%;
   color: #000000;
   text-shadow: 0 0 2px #ffffff, 0 0 4px #ffffff, 0px 0px 6px #ffffff,  0px 0px 8px #ffffff;
   font-family: Verdana, sans-serif;
   font-weight: bold;
   font-size: 12px;
   z-index: 6;
}

/* userslist */
.userslist {
   position: relative;
   width: 290pt;
   top: 0;
   left: 0;
   color: gray;
   text-shadow: 2px 2px 4px #000000, 1px 1px 2px #000000;
   z-index: 5;
}
.userslist p {
   color: gray;
   font-size: 16px;
   font-weight: bold;
}
.userslist a {
   font-size: 14px;
   color: gray;
   text-decoration:none;
   cursor: pointer;
}

.userslist a:hover {
   color: lightgray;
   text-decoration: none;
}

/* userhome */
.userhome, .userplaylists {
   position: relative;
   width: 290pt;
   left: 0;
   color: gray;
   text-shadow: 2px 2px 4px #000000, 1px 1px 2px #000000;
   z-index: 5;
}
.userhome {
   top: 75%;
}
.userplaylists {
   top: 0;
}
.userhome, .userplaylists p {
   color: gray;
   font-size: 16px;
   font-weight: bold;
}
.userhome, .userplaylists a {
   font-size: 14px;
   color: gray;
   text-decoration:none;
   cursor: pointer;
}
/*
a:hover, a:visited, a:link, a:active {
   color: lightgray;
   text-decoration: none;
}
*/
/* signup form text */
.signup, .signin, .signout {
   position: relative;
   width: 310pt;
   top: 0%;
   left: 0;
   color: white;
   text-shadow: 2px 2px 4px #000000, 1px 1px 2px #000000;
   z-index: 5;
}
.signup, .signin, .signout p {
   color: white;
   font-size: 16px;
   font-weight: bold;
}
.signup, .signin, .signout a {
   font-size: 14px;
   color: white;
   text-decoration:none;
   cursor: pointer;
}

/* Profile */
.profile-section {
    width: 94%;
    max-width: 480px;
    margin: 5px auto;
    padding: 5px;
    background-color: #aaa;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header with Photo and Info */
.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

/* Profile Photo Styling */
.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
    margin-right: 20px;
}

/* Profile Info */
.profile-info h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

.profile-info .profile-email {
    font-size: 14px;
    color: #555;
}

/* Upload Form */
.upload-form {
    color: black;
    margin-top: 15px;
}

.upload-label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

.upload-form input[type="file"] {
    margin-bottom: 10px;
}

/* Reusing button styles */
.upload-form button {
    cursor: pointer;
    padding: 1px 5px;
    border: none;
    border-radius: 5px;
    background-color: #555555;
    color: white;
    font-size: 16px;
    transition: background-color 0.2s;
}

.upload-form button:hover {
    background-color: #666666;
}

.form-row {
    display: flex;
    align-items: unset;
    gap: 10px;
    margin-bottom: 15px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.bio-input {
    flex: 1; /* Make the input take remaining space */
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: none;
}

.comment-input {
    flex: 1; /* Make the input take remaining space */
width: 300;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: none;
}

#graphic {
    position: absolute;
    width: 97%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 1s;
    z-index: 2;
border:6px ridge #707070;
box-shadow: 2px 2px 2px #000;
}