* {
    box-sizing: border-box;
    font-family: "Inter Tight", sans-serif;
}

body {
    font-family: "Inter Tight", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f6f6f6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.header {
    padding: 10px 0;
    color: #ffffff;
    background-color: #fff00a;
}

.header .container {
    display: flex;
    align-items: center;
}

.header-logo img {
    width: 140px;
}

.header-nav {
    padding: 10px 0;
    margin-left: 40px;
}

.header-profile {
    margin-left: auto;
}

.header-profile .avatar .tooltip {
    display: none !important;
}

.has-dropdown {
    position: relative;

}

.dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    min-width: 200px;
    width: max-content;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.dropdown .dropdown-button {
    display: block;
    padding: 10px 20px;
    color: #000000;
    text-decoration: none;
    transition: 0.3s;
}

.dropdown .dropdown-button:hover {
    color: #000000;
    background-color: #f6f6f6;
}

.has-dropdown:hover .dropdown {
    display: block;
}

.nav-list {
    display: flex;
    padding: 0;
    margin: 0;
    align-items: center;
    list-style-type: none;
}

.nav-list li {
    margin-right: 30px;
}

.nav-list a {
    color: #000000;
    text-decoration: none;
}

.header-nav .nav-list a {
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.header-nav .nav-list a svg {
    width: 24px;
    height: 24px;
    margin-right: 5px;
    color: #737373;
    transition: 0.3s;
}

.header-nav .nav-list a:hover svg {
    color: #000000;
}

.content {
    padding: 40px 0;
}

.card {
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
}

.card-title {
    margin: 0 0 20px;
    font-size: 24px;
}

.card-header {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
    align-items: center;
}

.card-header:only-child {
    margin-bottom: 0;
}

.card-header .card-title {
    margin: 0;
}

.button {
    position: relative;
    display: inline-flex;
    cursor: pointer;
    padding: 10px 20px;
    color: #000000;
    font-size: 16px;
    text-decoration: none;
    outline: none;
    justify-content: center;
    align-items: center;
    border: 2px solid #000;
    border-bottom-width: 4px;
    background-color: #ffffff;
    transition: all 0.3s;
}

.button svg {
    width: 24px;
    height: 24px;
    margin-left: 5px;
}

.button:hover {
    color: #000000;
    background-color: #fff00a;
}

.button:hover::before {
    transform: scaleY(1);
}

.table-button {
    display: inline-flex;
    cursor: pointer;
    width: 30px;
    height: 30px;
    text-decoration: none;
    border: none;
    outline: none;
    color: #4d4d4d;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #d2d2d2;
}

.table-button svg {
    width: 20px;
    height: 20px;
}

.table-button.continue {
    color: #ffffff;
    background-color: #00ff00;
}

.table-button.pause {
    color: #ffffff;
    background-color: #ff9900;
}

.table-button.stop {
    color: #ffffff;
    background-color: #ff0000;
}

.table-button.delete {
    color: #ffffff;
    background-color: #000000;
}

.play-button {
    display: inline-flex;
    cursor: pointer;
    width: 50px;
    height: 50px;
    color: #ffffff;
    background-color: #04bb04;
    text-decoration: none;
    border: none;
    outline: none;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.play-button svg {
    width: 30px;
    height: 30px;
}

.play-button.stop {
    color: #ffffff;
    background-color: #ff0000;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #626262;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    color: #000000;
    border: 1px solid #e0e0e0;
}

.form-group-filter {
    display: flex;
}

.form-group-filter .form-group-submit {
    margin-left: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    padding: 10px;
}

table th {
    color: #656565;
    font-size: 13px;
    font-weight: 400;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

table td {
    background-color: #ffffff;
}

table tr:nth-child(even) td {
    background-color: #f6f6f6;
}

table td a {
    color: #000000;
    text-decoration: none;
}

table td a:hover {
    text-decoration: underline;
}

.col-id {
    width: 100px;
}

.col-avatar {
    width: 50px;
}

.tracker {
    display: flex;
    gap: 20px;
    align-items: center;
}

.tracker .form-group {
    margin-bottom: 0;
    width: 100%;
}

.tracker .form-group:last-child {
    margin-left: auto;
    width: auto;
}

.select2-container .select2-selection--single {
    height: 38px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px;
}

.time-w-btn {
    display: flex;
    align-items: center;
}

.time-w-btn span {
    margin-right: 20px;
    font-size: 20px;
}

.filters {
    display: flex;
    margin-bottom: 20px;
    gap: 20px;
}

.filters a {
    color: #545454;
}

.filters a:hover,
.filters a.active {
    color: #000000;
    text-decoration: none;
}

.avatar {
    position: relative;
    width: 35px;
    height: 35px;
}

.avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.avatar .tooltip {
    position: absolute;
    top: 100%;
    left: 50%;
    display: none;
    padding: 10px;
    font-size: 12px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 5px;
    z-index: 1;
    transform: translateX(-50%);
}

.avatar:hover .tooltip {
    display: block;
}

.login {
    width: 500px;
    margin: 0 auto;
}

.login .logo {
    margin-bottom: 20px;
    text-align: center;
}

.login .logo img {
    width: 160px;
}

.login form {
    padding: 40px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
}

.login .button {
    width: 100%;
}