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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #ccc;
    border-radius: 4px;
    align-items: baseline;
}

.container-titlebar {
            background-color: #2c3e50;
            padding: 10px 0px;
            border-radius: 4px;
        }

.container-addnew {
    max-width: 1800px;
    margin: 0 auto;
    padding: 20px;
    background: #ccc;
    border-radius: 4px;
    align-items: baseline;
}

.main-container {
    display: flex;
    justify-content: center;
    background: #ededed;
}

a:-webkit-any-link {
    cursor: pointer;
    text-decoration: none;
}

.container-titlebar a.menu-button, a#menu, #menu a {
          /*  color: #ff1493; */
        }

.company-actions {
    display: flex;
    justify-content: flex-end;
}

.company-detail {
    flex: 2;
    margin-right: 20px;
}

.sidebar {
    flex: 1;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
}

.title-bar {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
    --tw-gradient-from: #905dae var(--tw-gradient-from-position);
    --tw-gradient-to: #b54ff300 var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    --tw-gradient-to: #3730a3 var(--tw-gradient-to-position);
    color: #fff;
    width: 100%;
    box-sizing: border-box;
}

.title-bar__top-row,
.title-bar__bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-brand, .title-bar__auth-button, .menu-button {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.navbar-brand:hover, .title-bar__auth-button:hover, .menu-button:hover {
    text-decoration: underline;
}

.search-bar {
    flex: 1;
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

.search-and-auth {
    display: flex;
    align-items: center;
    width: 100%;
}

.search-form {
    display: flex;
    flex: 1;
}

.search-form button {
    display: none;
}


.title-bar__auth-button {
    padding: 5px 10px;
    margin-left: 10px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.title-bar__auth-button:hover {
    background-color: #444;
}

.search-filter {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

#applySearch {
    margin-left: 15px;
}

button {
    display: block;
    padding: 5px 25px;
    background-color: #f10a0a;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #d76464;
}

.menu-row {
    display: -webkit-inline-box;
    width: 100%;
    justify-content: space-between;
}

.menu {
    position: relative;
    display: inline-block;
    padding: 10px;
    text-align: left;
}

.menu .submenu {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
}

.menu:hover .submenu {
    display: block;
}

.submenu a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #ddd;
}

.submenu a:hover {
    background-color: #f1f1f1;
}



@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
    .jobs-list {
        display: flex;
    }
    .left-panel {
        width: 250px;
        margin-right: inherit;
    }
    .right-panel {
        width: auto;
        margin-left: 25px;
    }
}


@media (max-width: 600px) {
    .title-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .menu-row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    }

    .title-bar__top-row,
    .title-bar__bottom-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-and-auth {
        width: 100%;
        display: ruby;
        justify-content: left;
        align-items: center;
        margin-bottom: 10px;
    }

    .search-form {
        flex: 1;
        display: ruby;
        margin-right: 10px;
    }

    .search-bar {
        width: 80%;
        margin: 0px;
    }


    .title-bar__auth-button {
        margin-left: 0;
    }

    .title-bar__bottom-row {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .menu {
        width: 100%;
    }

    .menu .submenu {
        width: 100%;
        position: relative;
    }

    .container {
        width: 90%;
        padding: 10px;
    }

    .form-group-inline {
        flex-direction: column;
    }
}

.news, .reviews, .jobs, .projects {
    margin-bottom: 20px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    padding: 10px;
    background: #f4f4f4;
    margin-bottom: 10px;
    border-radius: 4px;
}

li h3 {
    margin: 0 0 10px 0;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.navbar-brand {
    font-size: 1.5em;
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    margin-right: 5px;
}

.search-bar {
    flex: 1;
    margin: 0 30px;
}

.search-bar form {
    display: flex;
}

.search-bar input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
}

.search-bar button {
    padding: 10px;
    border: 1px solid #ccc;
    border-left: none;
    background-color: #000;
    color: #fff;
    border-radius: 0 4px 4px 0;
}

.title-bar__right {
    display: flex;
    align-items: center;
}

.title-bar__auth-button {
    padding: 10px 15px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.title-bar__auth-button:hover {
    background-color: #444;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #000;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #ddd;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #444;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.modal-content button, .modal-content input[type="text"],.modal-content input[type="number"],.modal-content input[type="time"], .modal-content input[type="password"], .modal-content input[type="email"], .modal-content input[type="url"], .modal-content input[type="tel"], .modal-content textarea, .modal-content select, input[type="file"], .tagify__input {
    margin-bottom: 20px;
    padding: 10px 15px;
}
.tagify__input {
--tags-border-color: #ccc;
}

.ql-editor {
    background-color: white;
}

input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="tel"], .modal-content input[type="number"],.modal-content input[type="time"], textarea, select, input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-right: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

textarea {
    height: 100px;
}

.form-group {
    margin-bottom: 20px;
}

.checkbox { display: -webkit-box; }

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #ff1493;
}

.form-group .error {
    color: red;
    font-size: 12px;
}

.rating {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 16px;
    color: #ccc;
    cursor: pointer;
    margin: 0 5px;
}

.rating input:checked ~ label,
.rating input:hover ~ label,
.rating label:hover ~ label {
    color: #f5b301;
}

textarea #summary {
    height: 250px;
}

.tagify {
    width: 100%;
}

.countdown {
    text-align: right;
    font-size: 12px;
    color: #888;
}

.form-group-inline {
    display: ruby;
    justify-content: space-between;
    gap: 10px;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.notification a {
    color: #fff;
    text-decoration: underline;
}
