@font-face {
    font-family: kalameh;
    src: url("../fonts/KalamehWeb-Medium.woff2");
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: kalameh;
    scroll-behavior: smooth;
}

img {
    user-select: none;
}

/* SingleBLOG START */

.single {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
    margin: 20px 0;
}

.single-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 1200px;
}

.single-top {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(128, 128, 128, 0.2);
    border: 2px solid white;
    position: relative;
    width: 100%;
}

.single-top-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.single-top-img img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 10px;
}

/* .single-top-about {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    width: 98%;
    padding: 10px;
    bottom: 2%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
} */
.single-top-about {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    gap: 10px;
    width: 98%;
    padding: 10px;
    bottom: 2%;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.single-top-about-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    color: black;
    font-size: 20px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow-y: hidden;
    text-overflow: ellipsis;
}

.single-top-about-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    font-size: 14px;
}

.single-top-about-bottom-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.single-bottom {
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.single-bottom a{
    text-decoration: none;
    color: red;
}

.single-bottom img {
    width: 100%;
    border-radius: 5px;
}

.fancy-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.fancy-table th,
.fancy-table td {
    border: 1px solid #ddd;
    padding: 12px 16px;
    text-align: center;
}

.fancy-table th {
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
}

.fancy-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.fancy-table tr:hover {
    background-color: #f1f1f1;
}

/* SingleBLOG END */