/* ---------------------------------------------------------------------------------------------- */
/* -----| GENERAL |------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------- */

/* @font-face declaration for Vazir Black FD-WOL font */
@font-face {
  font-family: 'Vazir Black FD-WOL';
  src: url('Vazir Black FD-WOL.ttf') format('truetype'); /* Adjust path as needed */
  font-weight: normal;
  font-style: normal;
}

/* Reset default margin */
* {
    margin: 0;
}

html {
    height: 120%;
}

body {
    height: 100%;
    padding: 70px 0 0;
    color: #8a8f97 !important;
    background-color: #1d2025 !important;
    font-family: 'Roboto', sans-serif !important;
    font-size: 16px !important;
}

body.breadcrumb-fixed {
    padding-top: 56px;
}

.container {
    max-width: 960px;
}

a {
    color: #616161;
}

a:hover {
    color: #616161;
}

a:active {
    color: #00897B;
}

/* -------------------------------------------------------------------------- */
/* -----| HEADER |----------------------------------------------------------- */
/* -------------------------------------------------------------------------- */

.navbar-default {
   background-color: #131415;
border: 0;
box-shadow: 0px 2px 3px #2a16b3;
padding: 5px 0;
}

#page-navbar .navbar-text>a {
    color: rgba(255, 255, 255, .8);
}

#page-navbar .navbar-text {
    display: block;
    float: left;
    font-family: 'Roboto-Medium', sans-serif;
    color: white;
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.navbar-default .navbar-nav>li>a, .navbar-default .navbar-nav>li>a:visited {
    color: white;
}

.navbar-default .navbar-nav>li>a:hover {
    color: #B2DFDB;
}

.navbar-default .navbar-nav>li>a:active {
    color: #80CBC4;
}

/* ---------------------------------------------------------------------------------------------- */
/* -----| DIRECTORY LISTER |--------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------- */
.button {
  --border-radius: 30px;
  --border-width: 5px;
  appearance: none;
  position: relative;
  padding: 1em 2em;
  border: 0;
  background-color: #212121;
  font-family: 'Vazir Black FD-WOL', sans-serif; /* Apply Vazir Black FD-WOL font here */

  font-size: 19px;
  font-weight: 500;
  color: #fff;
  z-index: 2;
}

button::after {
  --m-i: linear-gradient(#000, #000);
  --m-o: content-box, padding-box;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: var(--border-width);
  border-radius: var(--border-radius);
  background-image: conic-gradient(
    #488cfb,
    #29dbbc,
    #ddf505,
    #ff9f0e,
    #e440bb,
    #655adc,
    #488cfb
  );
  -webkit-mask-image: var(--m-i), var(--m-i);
  mask-image: var(--m-i), var(--m-i);
  -webkit-mask-origin: var(--m-o);
  mask-origin: var(--m-o);
  -webkit-mask-clip: var(--m-o);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  filter: hue-rotate(0);
  animation: rotate-hue linear 850ms infinite;
  animation-play-state: paused;
}

button:hover::after {
  animation-play-state: running;
}

@keyframes rotate-hue {
  to {
    filter: hue-rotate(1turn);
  }
}

button,
button::after {
  box-sizing: border-box;
}

button:active {
  --border-width: 5px;
}

#directory-list-header {
    font-family: 'Roboto-Medium', sans-serif;
    font-weight: bold;
    padding: 10px 15px;
}

#directory-listing {
    font-family: 'Roboto', sans-serif;
}

#directory-listing li {
    position: relative;
}

#directory-listing li > a:hover {
    background-color: #E0F2F1;
}

.file-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

}

.clrrang{color: #d8d7db !important;}
.clrrang:hover {
	color: #4914e8 !important;
}
.file-name i {
    color: #9E9E9E;
    margin-right: 26px;
    vertical-align: middle;
}

.file-info-button,
.web-link-button {
    display: inline-block;
    cursor: pointer;
    margin-left: 100%;
    padding: 6px 10px !important;
    position: absolute !important;
    top: 4px;
    vertical-align: middle;
}

.web-link-button i,
.file-info-button i {
    color: #999;
    vertical-align: middle;
}


/* ---------------------------------------------------------------------------------------------- */
/* -----| FOOTER |------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------- */

.footer, .push {
    text-align: center;
    height: 40px; /* .push must be the same height as .footer */
}

.wrapper {
    min-height: 100%;
    height: auto !important; /* This line and the next line are not necessary unless you need IE6 support */
    height: 100%;
    margin: 0 auto -40px; /* the bottom margin is the negative value of the footer's height */
}

/* ---------------------------------------------------------------------------------------------- */
/* -----| CHECKSUM MODAL |----------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------- */

#file-info {
    margin: 0;
}

#file-info .table-title {
    font-family: "Roboto-Medium", sans-serif;
    text-align: right;
}

#file-info .md5-hash,
#file-info .sha1-hash {
    font-family: 'Roboto-Mono', monospace, serif;
}


/* -------------------------------------------------------------------------- */
/* -----| RESPONSIVE |------------------------------------------------------- */
/* -------------------------------------------------------------------------- */

@media (max-width: 767px) {

    .navbar-nav {
        float: left;
        margin: 0;
        padding-bottom: 0;
        padding-top: 0;
    }

    .navbar-nav > li {
        float: left;
    }

    .navbar-nav > li > a {
        padding-bottom: 15px;
        padding-top: 15px;
    }

    .navbar-right {
        float: right !important;
    }

    #page-navbar .navbar-text {
        margin-left: 15px;
        margin-right: 15px;
        max-width: 75%;
    }

    .file-info-button {
        display: none !important;
    }

}

