/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Apply background image only to start, login, and register pages */
.start-page, .login-page, .register-page {
    background-image: url('../image/screen.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
}

/* Navbar Styling */
.navbar {
    background-color: #6a0dad;
    padding: 10px;
    text-align: center;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 10px;
    padding: 10px;
    display: inline-block;
}

/* Content Styling */
.content {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    box-shadow: 0px 0px 10px rgba(106, 13, 173, 0.2);
}

/* Footer */
.footer {
    text-align: center;
    padding: 10px;
    background: #6a0dad;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Button Styling */
.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    background-color: #8a2be2;
    color: white;
    border-radius: 5px;
}

.btn:hover {
    background-color: #5d1d89;
}

/* Post Styling */
.post {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(138, 43, 226, 0.2);
}

/* Post Images */
.post img {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    border-radius: 8px;
}

/* Post Header */
.post-header {
    background-color: #d8b6ff;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
}

.post-header small {
    color: #555;
}

/* Friends Section */
.friends-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
}

.friend-requests, .friend-list, .friend-suggestions {
    flex: 1;
    background: #e6ccff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

/* Chat Page */
.chat-container {
    max-width: 600px;
    margin: 40px auto;
    background-color: white;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(106, 13, 173, 0.2);
    border-radius: 10px;
}

/* Messages Section */
#chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #6a0dad;
    background: #f3e5ff;
}

/* Message Styling */
.sent {
    text-align: right;
    background-color: #8a2be2;
    color: white;
    padding: 8px;
    border-radius: 10px;
    margin: 5px;
    display: inline-block;
    max-width: 80%;
}

.received {
    text-align: left;
    background-color: #d8b6ff;
    color: #333;
    padding: 8px;
    border-radius: 10px;
    margin: 5px;
    display: inline-block;
    max-width: 80%;
}

/* Input & Send Button */
#chat-input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    border: 1px solid #6a0dad;
    font-size: 16px;
}

button {
    background-color: #8a2be2;
    color: white;
    font-size: 16px;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

button:hover {
    background-color: #5d1d89;
}
