/* styles.css */
body {
    font-family: Arial, sans-serif;
    direction: rtl;
}

.dashboard {
    width: 80%;
    margin: 0 auto;
    text-align: right;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 24px;
}

.stats {
    display: flex;
    gap: 20px;
}

.stats div {
    text-align: center;
}

.user-controls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.user-controls input {
    width: 70%;
    padding: 10px;
}

.user-controls button {
    padding: 10px 20px;
}

.user-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.user-table th, .user-table td {
    border: 1px solid #ccc;
    padding: 10px;
}

.username .status {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 10px;
}

.username .status.online {
    background-color: green;
}

.data-usage .data-bar {
    width: 100%;
    height: 10px;
    background-color: #f1f1f1;
    position: relative;
}

.data-usage .bar {
    height: 100%;
    background-color: #4caf50;
    position: absolute;
}

.settings button {
    margin-right: 10px;
}

footer {
    display: flex;
    align-items: center;
    gap: 10px;
}
