/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Sep 28, 2021, 9:34:29 AM
    Author     : developer
*/
#vacancy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.job-card {
    background: #f3f2f2;
    border-radius: 16px;
    box-shadow: 8px 8px 16px #cfcece, -8px -8px 16px #ffffff;
    padding: 24px 32px;
    margin: 15px 0;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #333 !important;
}

.job-card:hover {
    box-shadow: inset 6px 6px 12px #cfcece, inset -6px -6px 12px #ffffff;
    transform: translateY(2px);
    text-decoration: none !important;
}

.job-card-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.job-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #012b22;
    margin: 0;
}

.job-card-location {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-card-location i {
    color: #d9a128;
}

.job-card-btn {
    background: #f3f2f2;
    border-radius: 30px;
    box-shadow: 3px 3px 6px #cfcece, -3px -3px 6px #ffffff;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #012b22;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.job-card:hover .job-card-btn {
    box-shadow: inset 2px 2px 4px #cfcece, inset -2px -2px 4px #ffffff;
    color: #d9a128;
}

.job-container {
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    /*flex-direction: column;*/
    
}
.job-container  ul {
  list-style: none;
}

.job-container  li::before {
  content: "\2022";
  color: red;
  font-weight: 900; 
  display: inline-block; 
  width: 1em; 
}

.parent-job {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2em 0;
}

.parent-job h5, .parent-job h3 {
    text-align: left;
    align-self: flex-start;
    color: var(--theme-primary);
}

.parent-job h3 {
    color: var(--theme-secondary);
}

.parent-job li::before {
    color: red;
    text-justify: distribute;
}

.parent-job button {
    align-self: center;
}

.signin-parent {
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 3px #eee solid;
}

.signin-container {
    width: 40vw;
    
}

.signin-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1em;
} 

.signin-item {
    display: flex;
    width: 20vw;
}
.signin-item label {
    padding-right: 1em;
}

.sign-btn {
    width: 10vw;
    align-self: center;
    margin-left: 6vw;
}
.signin-parent-container {
    border: 2px #eee solid;
    padding: 3em;
    padding-left: 0;
    border-radius: 5px;
}

.info-display{
    display: flex;
    justify-content: center;
    padding-left: 4em;
}
.error-msg {
    color: var(--theme-secondary);
}
.sucess-msg {
    color: green;
}
.no-post-text {
    display: flex;
    justify-content: center;
    padding: 0.5em 0;
}
.new-btn{
    justify-self: flex-end;
    margin-left: auto;
}
.new-p {
    justify-self: center;
    margin-left: auto;
}

.table tr{
    border-bottom: 2px #eee solid;
}

.posts-container{
    min-height: 50vh;
    border: 2px #eee solid;
}
.vacant {
    background-color: green;
}

.not-vacant {
    background-color: var(--theme-primary);
}

.delete {
    background-color: var(--theme-secondary);
}

.form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form form {
    min-width: 50vw;
    border: 2px #eee solid;
    padding: 1em;
    text-align: left;
}

.form label {
    color: var(--theme-primary);
}
.form .btn {
    float: right;
}

@media only screen and (max-width: 1024px) {
    .job-card {
        width: 90%;
    }
    .parent-job {
        width: 90%;
    } 
    .signin-container {
        width: 80vw;
    }
    .signin-item {
        width: 60vw;
    }
    .sign-btn {
        width: 50vw;
        margin-left: 0;
    }
    .form form {
        min-width: 90vw;
    }
    .info-display {
        padding-left: 0;
    }
}

/*@media only screen and (max-width: )*/