body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl;
    padding: 20px;
    background-color: #0d0d0d;
    color: #eee;
}

h2 {
    color: #00ffcc;
    border-bottom: 2px solid #00ffcc;
    padding-bottom: 5px;
}

textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #1a1a1a;
    color: #00ffcc;
    border: 1px solid #333;
    font-size: 16px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    margin: 10px 5px;
    background-color: #00ffcc;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-weight: bold;
}

button:hover {
    background-color: #00b3a4;
    transform: scale(1.05);
    box-shadow: 0 0 10px #00ffcc;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #1a1a1a;
    box-shadow: 0 0 10px #00ffcc33;
}

th,
td {
    border: 1px solid #00ffcc55;
    padding: 12px;
    text-align: center;
    color: #00ffcc;
    font-size: 16px;
}

th {
    background-color: #000;
    color: #00ffcc;
}

::selection {
    background: #00ffcc;
    color: #000;
}

@media (max-width: 600px) {

    th,
    td {
        font-size: 14px;
    }

    button {
        width: 100%;
        margin-bottom: 10px;
    }
}