/*
 Theme Name:   Haraj Style Child
 Template:     haraj-style
*/

@import url("../haraj-style/style.css");

/* ===== القائمة الجانبية ===== */
.custom-sidebar {
    width: 250px;
    background: #f9f9f9;
    border-right: 1px solid #ddd;
    padding: 15px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    overflow-y: auto;
    font-family: Arial, sans-serif;
    z-index: 1000;
}

.custom-sidebar h3 { margin-bottom: 10px; font-size: 16px; color: #007bff; }
.custom-sidebar ul { list-style: none; padding: 0; }
.custom-sidebar ul li { margin: 8px 0; }
.custom-sidebar ul li a { text-decoration: none; color: #333; display: block; }
.custom-sidebar ul li a:hover { color: #ff6600; }

/* ===== شريط الأزرار السفلي ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
    z-index: 9999;
    box-shadow: 0 -1px 5px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    position: relative;
}

.bottom-nav a i { font-size: 20px; margin-bottom: 3px; color: #007bff; }
.bottom-nav a.active i,
.bottom-nav a:hover i { color: #ff6600; }

.badge {
    position: absolute;
    top: 0px;
    right: -10px;
    background: red;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
    font-weight: bold;
}