/* Общие настройки */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    margin: 0;
    color: #fff;
    font-family: 'Source Code Pro';
    overflow-x: hidden;
}

/* Стили для раздела WEB & MOBILE */
.web-mobile-container {
    display: flex;
    justify-content: center;
    padding: 40px;
    color: #fff;
    width: 100%;
}

.web-mobile-content {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
}

.web-mobile-left {
    max-width: 400px;
    flex: 1;
}

.web-mobile-development {
    font-size: 24px;
    font-weight: bold;
    color: #D6BA75;
    display: block;
    margin-bottom: 16px;
}

.web-mobile-department {
    font-size: 16px;
    line-height: 1.5;
}

/* Стили для телефона */
.iphone {
    width: 280px;
    height: 500px;
    border-radius: 30px;
    background-color: #000;
    border: 8px solid #fff;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-top: 0vw;
    margin-bottom: 12vw;
    margin-left: 15%;
}

/* Верхняя часть - динамик */
.iphone::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background-color: #333;
    border-radius: 10px;
}

/* Нижняя часть - кнопка "домой" */
.iphone::after {
    content: "";
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 29px;
    height: 30px;
    background-color: #333;
    border-radius: 50%;
}

/* Внутренний экран */
.screen {
    width: 92%;
    height: 92%;
    background-color: #000;
    margin: auto;
    border-radius: 20px;
    padding: 4%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Заголовок */
.header {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #D6BA75;
    margin-bottom: 16px;
    margin-top: 2vw;

}

/* Dashboard */
.dashboard {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card {
    background-color: #1a1a1a;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.card h3 {
    font-size: 14px;
    margin: 0;
    font-family: 'Source Code Pro';
}

.card p {
    font-size: 12px;
    margin: 0;
    font-family: 'Source Code Pro';
}

.modern-button {
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 4px 8px;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
    width: 39%;
}

.modern-button:hover {
    background-color: #fff;
    color: #000;
}

/* Chart Container */
.chart-container {
    width: 100%;
    height: 100px;
    background-color: #1a1a1a;
    border-radius: 12px;
}

/* Task List */
.task-list {
    background-color: #1a1a1a;
    padding: 16px;
    border-radius: 12px;
    color: #fff;
}

.task-list h3 {
    font-size: 14px;
    margin-bottom: 10px;
    font-family: 'Source Code Pro';
}

.task-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.task-list ul li {
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-family: 'Source Code Pro';
}

.task-status {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
}

.status-in-progress {
    background-color: #a000004a;
}

.status-completed {
    background-color: #28a74542;
}

.status-upcoming {
    background-color: #a078004a;
}

.add-task {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.add-task input {
    padding: 4px;
    border: 1px solid #fff;
    border-radius: 4px;
    background-color: #000;
    color: #fff;
}

.add-task button {
    padding: 4px 8px;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
    cursor: pointer;
}
.screen {
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
}

.screen::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
