* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Montserrat", sans-serif;
    padding-top: 106px;
    background: #EDEDED;
}

a {
    text-decoration: none;
    color: inherit;
}

.main {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 150px;
    padding: 0 20px;
}

.main-title {
    font-family: "Unbounded", sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #2D2D2D;
}

.main-panel {
    width: 100%;
    background: #fff;
    border-radius: 30px 30px 0px 0px;
    margin-top: 20px;
}

.post-panel {
    background: #fff;
    padding: 20px 25px;
    border-bottom: 1px solid #C5C5C5;
    display: flex;
    align-items: flex-start;
    transition: 300ms;
    border-top: none;
    border-left: none;
    border-right: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
}

.post-panel:hover {
    background: #E8E8E8;
}

#first-post {
    border-radius: 30px 30px 0px 0px;
}

.post-title {
    font-size: 18px;
    font-weight: 600;
    color: #2D2D2D;
    max-width: 700px;

    word-wrap: break-word;  
    word-break: break-word;   
    white-space: normal;       
    overflow-wrap: break-word;  

    hyphens: auto;
}

.post-text {
    font-size: 16px;
    max-width: 700px;
    color: #868686;
    font-weight: 600;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;

    word-wrap: break-word;  
    word-break: break-word;   
    white-space: normal;       
    overflow-wrap: break-word;  

    hyphens: auto;
}

.post-id {
    font-size: 14px;
    color: #B7B7B7;
    font-weight: 500;
    text-align: right;
    margin-bottom: 5px;
}

.post-info-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    margin-left: auto;
    padding-left: 20px;
    border-left: 1px solid #EAEAEA;
    min-width: 180px;
}

.post-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-info-icon {
    width: 16px;
    height: 16px;
}

.post-info-text {
    font-size: 14px;
    color: #868686;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-info-num {
    font-weight: 700;
    color: #2D2D2D;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.category-filters {
    display: flex;
    gap: 15px;
}

.category-filter {
    padding: 8px 20px;
    background: rgb(0, 0, 0);
    border-radius: 30px;
    color: rgb(255, 255, 255);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-filter:hover {
    background: #1b1b1b;
}

.category-filter.active-filter {
    background: #0077ff;
    color: white;
}

.no-posts {
    font-family: "Unbounded";
    font-weight: 600;
    text-align: center;
    padding: 50px;
    color: #000;
    font-size: 18px;
}

.admin-quick-access {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.admin-quick-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #4A90E2;
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
}

.admin-quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}