﻿

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


html, body {
    height: 100%;
}
.container {
    margin-bottom: 100px; /* أكبر من ارتفاع الفوتر */
}

/* Sidebar Styles */
#wrapper {
    display: flex;
    min-height: 100vh;
    overflow-x: hidden;
}

#sidebar-wrapper {
    min-width: 250px;
    max-width: 250px;
    transition: all 0.3s;
}

#wrapper.toggled #sidebar-wrapper {
    margin-left: -250px;
}

#page-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Sidebar links */
.list-group-item {
    border: none;
}

    .list-group-item:hover {
        background-color: #495057;
    }
