html{
  /*Set some global colors here for quick re-coloring of stuff!*/
  --bg-color:  #d64933;
  --darker-color: #000000;
  --lighter-color:  #ffffff;
  --sidebar-width:140px;
  font-family: "Arial", "Helvetica", sans-serif;
  margin: 0;
  padding: 0;
  background-image: url(); /*add image url for tiled background*/
  width: 100%;
  min-height: 100vh;
  position: relative;
  cursor: url("https://cdn.glitch.com/671595ec-8940-4814-a583-758de988575a%2Fimageedit_1_8832381058.png?v=1582170625066"), default !important;
  word-wrap: break-word;
}

body {
    font-family: "Arial", "Helvetica", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #d64933;
    color: #ffffff;
}

header {
    background-color: #000000;
    color: #ffffff;
    padding: 10px 20px;
    border-bottom: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo img {
    max-height: 40px;
    max-width: 40px
}

nav, sidebar {
    display: flex;
    gap: 15px;
  padding: 10px;
    margin-top: auto; /* Center the profile picture */
    margin-bottom: auto; /* Center the profile picture */
}

nav a {
    color: #61afef;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

section {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #333333;
    border-radius: 4px;
    background-color: #2c313a;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

section h2 {
    margin-top: 0;
    color: #ffffff;
}

input[type="text"] {
    padding: 10px;
    width: calc(100% - 120px);
    margin-right: 10px;
    border: 1px solid #333333;
    border-radius: 5px;
    background-color: #3c3f41;
    color: #abb2bf;
}

button {
    padding: 10px 20px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #528bff;
}

footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 10px 20px;
    border-top: 1px solid #ffffff;
    position: fixed;
    width: 100%;
    bottom: 0;
    word-wrap: break-word;
}
/* Existing styles */

.auth-form {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background-color: #2c313a;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.auth-form h2 {
    color: #ffffff;
}

.auth-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-form label {
    color: #abb2bf;
}

.auth-form input {
    padding: 10px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    background-color: #3c3f41;
    color: #abb2bf;
}

.auth-form button {
    padding: 10px;
    background-color: #d64933;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.auth-form button:hover {
    background-color: #3c3f41;
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.cover-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.profile-info {
    text-align: center;
    margin-top: -80px;
}

.profile-pic {
    border-radius: 0%;
    width: 120px;
    height: 120px;
    border: 4px solid #ffffff;
}

.stories, .videos {
    margin: 20px 0;
}

.story-gallery, .video-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.story, .video-gallery video {
    max-width: 200px;
    border-radius: 8px;
}

.nav_pic {
    width: 35px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    border-radius: 0%;
    border: 2px solid white;
    object-fit: cover;
}

.feed_pic {
    width: 50px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    border-radius: 0%;
    border: 2px solid white;
    object-fit: cover;
}

.profile-section {
    text-align: center;
    padding: 20px;
}


.profile-header h1 {
    margin-top: 10px;
}

/* Logo Styling */
.logo {
    text-align: center; /* Center the logo */
    padding: 10px;
}

.site-logo {
  padding: 10px;
    width: 150px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
}


.cover-photo .cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Edit Profile Button */
.edit-profile {
    background-color: #000000;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
}

.edit-profile:hover {
    background-color: #3c3f41;
}

/* Profile Stats */
.profile-details {
    text-align: center;
    margin-top: 10px;
    color: white;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.profile-stats span {
    font-size: 16px;
}

/* Photo Grid Styling */
.photo-gallery {
    padding: 20px;
    text-align: center;
}

.photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-photo {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border: 2px solid #007acc;
}
/* Tooltip container */
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #ffffff;
text-align: center;
padding: 5px 0;
border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
position: absolute;
z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
visibility: visible;
}