body {
    font-family: sans-serif;
    direction: rtl;
    margin: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 1rem;
    text-align: center;
}

.tabs {
    display: flex;
    justify-content: center;
    background-color: #444;
}

.tab-link {
    background-color: #444;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.tab-link:hover {
    background-color: #555;
}

.tab-link.active {
    background-color: #317EFB;
}

main {
    padding: 1rem;
}

.tab-content {
    display: none;
    background-color: white;
    padding: 1rem;
    border-radius: 5px;
}

.tab-content.active {
    display: block;
}

#search-bar {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.employee, .tool {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.employee:last-child, .tool:last-child {
    border-bottom: none;
}

/* Tool Page Styles */
.tool-container {
    background-color: white;
    padding: 1rem;
    border-radius: 5px;
}

.tool-container h2 {
    margin-bottom: 20px;
    color: #333;
}

.tool-container textarea {
    width: 100%;
    height: 150px;
    margin-top: 10px;
    padding: 10px;
    font-family: monospace;
    font-size: 14px;
    box-sizing: border-box;
}

.tool-container input, .tool-container button {
    margin-top: 10px;
    padding: 10px 15px;
    font-size: 14px;
    margin-left: 5px;
}

.back-link {
    color: white;
    text-decoration: none;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.reset-btn {
    background-color: #f44336;
    color: white;
    border: none;
}

footer {
    text-align: center;
    margin-top: 30px;
    color: #777;
    font-size: 14px;
} 