/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

#header {
    width: 800px;
    margin: 0 auto;
    text-align: center;
}

#header img {
    width: 100%; /* Ajustează imaginea la lățimea elementului părinte */
    height: auto; /* Păstrează raportul de aspect al imaginii */
}

#app {
    max-width: 1000px;
    margin: 0 auto;
}

#new-word-form,
#word-list-container,
#categories,
#submit-form {
    margin-bottom: 20px;
    width: 100%;
}

#new-word-form {
    display: flex;
    align-items: center;
}

#new-word {
    margin-right: 10px;
}

.category {
    flex-basis: 25%;
    margin-bottom: 20px;
}

.category h2 {
    margin-bottom: 10px;
}

ul {
    list-style-type: none;
    padding: 10px;
    border: 1px solid #ccc;
    min-height: 100px;
    margin-bottom: 20px;
    border-radius: 5px;
}

li {
    padding: 5px 10px;
    background-color: #f0f0f0;
    margin: 5px;
    border-radius: 4px;
    cursor: move;
}

.droppable {
    border: 2px dashed #ccc;
    min-height: 100px;
}

.droppable.active {
    border-color: #333;
}

.category[data-category="Service"] ul {
    border-color: #ff7f0e; /* Culoare pentru categoria Service */
}

.category[data-category="Internet și televiziune"] ul {
    border-color: #2ca02c; /* Culoare pentru categoria Internet și televiziune */
}

.category[data-category="Comercial"] ul {
    border-color: #1f77b4; /* Culoare pentru categoria Comercial */
}

.category[data-category="Securitate cibernetică"] ul {
    border-color: #d62728; /* Culoare pentru categoria Securitate cibernetică */
}

#submit-button {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
