:root {
  --primary-color: #028AFE;
  --secondary-color: #FEFEFE;
  --gray-color: hsl(225, 2%, 45%);
  --white: #fff;
  --bg-color: #F3F1F1;
  --bg-gradient-1: #253CC9;
  --bg-gradient-2: #007FEF;
  --sidebar-link-active-bg: #E9ECEF;
}

.actions {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  flex-wrap: wrap;
}

.actions button {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Flex */
.justify-content-space-between {
  justify-content: space-between;
}

.text-align-left {
  text-align: left;
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  background-color: transparent;
  font-size: 0.95rem;
  color: #1e293b;
}

.table thead th {
  background-color: #f1f5f9;
  color: #475569;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
  border: none;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.table tbody tr {
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  transition: box-shadow 0.2s ease;
}

.table tbody tr:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.table tbody td {
  text-align: center;
  padding: 14px 10px;
  border: none;
  border-bottom: 1px solid #e2e8f0;
}

/* Remove as bordas duplicadas nos cantos */
.table tbody tr td:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.table tbody tr td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

@media (max-width: 991px) {
  .main-content {
    margin: 56px 0 0 72px;
  }
}

/* Input */
label {
	color: #000;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 20px;
	margin: 0;
}

.form-control {
	background: #fff;
	border: 1px solid #bac7d5;
	border-radius: 8px;
	box-shadow: 0 1px 2px 0 rgba(16,24,40,.05);
	color: #252a31;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Dark */

.bg-dark {
  background: linear-gradient(to right, var(--bg-gradient-1), var(--bg-gradient-2));
}

/* Button */

.btn {
  border-radius: 8px;
  font-weight: bold;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: #eee;
  border-color: #eee;
  color: var(--primary-color);
}

/* Footer */

footer {
  width: 100%;
  background-color: #ddd;
  padding: 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-content-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-content-bottom {
  text-align: center;
}

.footer-social-media {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 376px) {
  .footer-content-top {
    justify-content: center;
  }
}

/* Card */
.card {
  border-radius: 16px;
  border: none;
}

      body {
        font-family: 'Inter', sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f8f9fa;
      }

      .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 260px;
        height: 100vh;
        background-color: #0a2742;
        color: #fff;
        z-index: 1030;
        padding: 20px 15px;
        overflow-y: auto;
      }

      .sidebar .brand {
        font-size: 1.2rem;
        font-weight: 600;
        color: white;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
      }

      .sidebar .brand img {
        height: 40px;
      }

      .sidebar .box {
        background-color: #0e365d;
        border-radius: 8px;
        padding: 15px;
        margin-bottom: 20px;
      }

      .sidebar .box .label {
        font-size: 0.85rem;
        color: #b0bec5;
      }

      .sidebar .box .value {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 10px;
      }

      .sidebar .box .btn {
        font-size: 0.8rem;
        padding: 5px 10px;
      }

      .storage-bar {
        height: 6px;
        background-color: #294864;
        border-radius: 4px;
        margin-top: 5px;
        overflow: hidden;
      }

      .storage-bar-fill {
        height: 100%;
        background-color: #3b82f6;
        width: 0%;
      }

      .sidebar a {
        color: #cfd8dc;
        text-decoration: none;
        padding: 10px 15px;
        display: flex;
        align-items: center;
        gap: 10px;
        border-radius: 6px;
        transition: background 0.3s;
        font-size: 0.95rem;
      }

      .sidebar a:hover{
        background-color: rgba(46, 59, 78, 0.5);
      }
      .sidebar a.active {
        background-color: #10476c;
        color: #ffffff;
        transition: background-color 0.3s ease;
      }

      .topbar {
        background-color: #0e365d !important;
        height: 60px;
        margin-left: 260px;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px;
      }

      .main-content {
        margin-left: 260px;
        padding: 20px;
      }

      .dropdown-menu-end {
        right: 0;
        left: auto;
      }