/* employee-productivity-calculator-css.css */
body {
    font-family: 'Open Sans', sans-serif;
}

#calculator-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#calculator {
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 20px;
    max-width: 500px;
    width: 100%;
}

.section {
    margin-bottom: 20px;
}

.section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

label {
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

input, select {
    width: calc(50% - 10px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid lightgrey;
    border-radius: 5px;
    font-size: 16px;
}

input:focus, select:focus {
    border-color: #0866FF;
}

.buttons {
    display: flex;
    justify-content: space-between;
}

button {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    border: none;
    border-radius: 3px;
    background-color: #0866FF;
    cursor: pointer;
}

button:hover {
    background-color: #275ADC;
}

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

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    position: relative;
    border-radius: 5px;
}

.modal-content h3 {
    font-size: 18px;
    font-weight: 600;
}

.modal-content textarea {
    width: 100%;
    height: 100px;
    margin-top: 10px;
    padding: 10px;
    font-size: 14px;
}

.modal-content a {
    margin-top: 10px;
    display: inline-block;
    color: #0866FF;
    cursor: pointer;
	text-align:center!important;
}

.modal-content .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}
