.search-bar {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
.search-input {
    padding: 10px;
    border-radius: 5px;
    border: none;
    width: 300px;
    font-size: 16px;
}
.search-button {
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    font-size: 16px;
    margin-left: 5px;
}
.search-button:hover {
    background-color: #45a049;
}
.filter-button {
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    font-size: 16px;
    margin-left: 5px;
}
.filter-button:hover {
    background-color: #0056b3;
}
.results-count {
    color: white;
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
}
.post {
    display: flex;
    background-color: #050505;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    position: relative;
    transition: transform 0.2s;
}
.post:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.post-profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.post-profile-pic {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-left: 10px;
    vertical-align: middle;
}
.post-display-name {
    color: white;
    font-size: 12px;
    margin-left: 5px;
    vertical-align: middle;
}
.post p {
    color: white;
    flex: 1;
    margin-left: 10px;
}
.post img {
    max-width: 100px;
    height: auto;
    border-radius: 5px;
}
.image-title {
    position: absolute;
    top: 5px;
    right: 760px;
    color: white;
    font-size: 14px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2px 5px;
    border-radius: 3px;
}
.tag {
    background-color: rgb(138, 14, 150);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 12px;
}
.status {
    background-color: rgb(255, 0, 43);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    max-height: 15px;
    font-size: 12px;
    margin-top: 10px;
}
.scam-warning {
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
    padding-bottom: 5px;
}
.board-area {
    padding: 20px;
    background-color: #050505;
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.board-area h2 {
    padding: 20px;
    color: white;
    text-align: center;
    border-bottom: 2px solid white;
    position: relative;
    overflow: hidden;
}
.board-area a {
    color: white; /* Sets the text color to white */
    text-decoration: none; /* Removes the underline from the link */
}

.board-area a:hover {
    color: lightgray; /* Changes the text color on hover */
    text-decoration: underline; /* Optionally add underline on hover */
}
.board-area h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmerBorderw 1.5s infinite;
}
@keyframes shimmerBorderw {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.premium-board-area {
    padding: 20px;
    background-color: #050505;
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.premium-board-area h2 {
    padding: 20px;
    color: white;
    text-align: center;
    border-bottom: 2px solid gold;
    position: relative;
    overflow: hidden;
}

.premium-board-area h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
    animation: shimmerBorder 1.5s infinite;
}

@keyframes shimmerBorder {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.post-maker-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    width: 300px;
    margin: 20px auto; /* Center the post maker container */
}
.post-maker-container h2 {
    text-align: center;
    color: #333;
}
.post-maker-container input, .post-maker-container textarea, .post-maker-container select {
    width: calc(100% - 20px); /* Adjusted to match button width */
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.post-maker-container button {
    width: 100%;
    padding: 10px;
    background-color: #3d0c02;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.post-maker-container button:hover {
    background-color: #b92e34;
}
.post-maker-container a {
    text-align: center;
    display: block;
    margin-top: 10px;
    color: #3d0c02;
    text-decoration: none;
}
.post-maker-container a:hover {
    text-decoration: underline;
}