body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #121212;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

select,
#search-user {
    padding: 5px;
    border: 1px solid #424242;
    border-radius: 5px;
    background-color: #121212;
    cursor: pointer;
    flex-grow: 1;
}

#search-user {
    flex-grow: 2;
}

.devices {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.device {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 10px;
    width: 180px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
}

.screen {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background-color: #d9d9d9;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.screen-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: #ffffff;
}

.device-details {
    margin-top: 10px;
    font-size: 12px;
    color: #fefefe;
}

.status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.online {
    background-color: green;
}

.offline {
    background-color: red;
}

.apps {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.apps i {
    font-size: 16px;
    background-color: #ffffff;
    border-radius: 3px;
    padding: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
