body {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Arial', sans-serif;
  
}

/* Media query for responsiveness */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column; /* Stack links vertically on small screens */
        gap: 10px; /* Space between links */
    }
}


.container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative; /* For absolute positioning of clouds */
    z-index: 1; /* Keep container content above clouds */
}

.profile-header {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #00d8ff; /* Modern bottom border */
    padding-bottom: 20px; /* Space below profile header */
}


.profile-info {
    flex: 1;
}

.badges-section {
    margin: 10px 0;
}



.bio-section, .social-section {
    margin-top: 10px;
}

.pinned-section {
    background-color: #3a3a3a; 
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* General Columns Layout */
.columns {
    display: flex;
    justify-content: space-between; /* Arrange columns side by side */
    gap: 20px;                     /* Add space between columns */
    margin-top: 20px;
}

/* For each column */
.column {
    width: 48%;  /* Ensure both columns take nearly half of the width */
    padding: 10px;
}

/* Chatbots Column */
.chatbots-column {
    background-color: #2a2a2a; 
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    padding: 10px;
}

/* Stories Column */
.stories-column {
    background-color: #2a2a2a;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    padding: 10px;
}

/* Sidebar Card in Stories */
.sidebar-card {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.sidebar-image {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin-right: 10px;
}

/* Header Style for Chatbots and Stories */
h2 {
    margin-bottom: 15px;  /* Space below the header */
    font-size: 1.5rem;    /* Adjust size for the header */
    color: #00d8ff;       /* Green color to match theme */
}

/* Responsive Layout */
@media (max-width: 768px) {
    .columns {
        flex-direction: column; /* Stack columns vertically on small screens */
        align-items: stretch;   /* Make the columns take full width */
    }

    .column {
        width: 100%;  /* Both columns will take full width */
        margin-bottom: 20px;  /* Add space between them */
    }
}


.sidebar-card {
    background-color: #3a3a3a; 
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.sidebar-image {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin-right: 10px;
}

.color-customization {
    margin-top: 20px; 
    padding: 15px;
    border-radius: 8px;
    background-color: #3a3a3a; 
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.color-customization label {
    margin-right: 10px; 
}

.follow-button {
    background-color: #00d8ff; 
    color: white; 
    border: none; 
    border-radius: 4px; 
    padding: 10px 15px; 
    cursor: pointer; 
}

.follow-button:hover {
    background-color: #00d8ff; 
}


@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px); 
        opacity: 0.8; 
    }
    100% {
        transform: translateY(0); 
        opacity: 0.6; 
    }
}

/* Profile Image Container */
.profile-image-container {
    width: 150px;                /* Container size */
    height: 150px;               /* Container size */
    border-radius: 50%;          /* Makes the container round */
    overflow: hidden;            /* Hide anything that goes outside the circle */
    display: flex;               /* Use flexbox to center the image */
    justify-content: center;     /* Horizontally center the image */
    align-items: center;         /* Vertically center the image */
    border: 2px solid #000;      /* Optional: Border around the image */
    margin-right: 15px;
}

/* Profile Picture */
.profile-pic {
    width: 100%;                 /* Ensure the image fills the width of the container */
    height: 100%;                /* Ensure the image fills the height of the container */
    object-fit: contain;         /* Ensures the image fits inside the container, scaling up or down */
    object-position: center;     /* Centers the image */
    min-width: 100%;             /* Ensures small images are scaled up */
    min-height: 100%;            /* Ensures small images are scaled up */
}
