.noscript-warning {
    background-color: #ff6b6b;
    color: #ffffff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.noscript-warning strong {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
}

.noscript-warning p {
    font-size: 14px;
    margin: 5px 0;
    line-height: 1.5;
}

.field-wrapper {
    display: flex;
    border: 1px solid;
    padding: 2px;
    overflow: hidden;
}

body.dark-theme .field-wrapper { border-color: #444444; }
body.dark-theme input, body.dark-theme select {
    background-color: #222222;
    color: #ffffff;
    border: none; 
}
body.dark-theme select { border-left: 1px solid #444444; }
body.dark-theme .full-field input { 
    background-color: #222222;
    border: 1px solid #444444; 
    color: #aaaaaa;
}
body.dark-theme .full-field input:focus {
    color: #ffffff;
}

body.dark-theme .action-btn {
    background-color: #28a745;
    color: #ffffff;
    border: none;
}
body.dark-theme .action-btn:hover {
    background-color: #218838;
}

body.light-theme .field-wrapper { border-color: #cccccc; }
body.light-theme input, body.light-theme select {
    background-color: #ffffff;
    color: #000000;
    border: none;
}
body.light-theme select { border-left: 1px solid #cccccc; }
body.light-theme .full-field input { 
    background-color: #ffffff;
    border: 1px solid #cccccc; 
}

body.light-theme .action-btn {
    background-color: #28a745;
    color: #ffffff;
    border: none;
}
body.light-theme .action-btn:hover {
    background-color: #218838;
}

input {
    flex: 1;
    padding: 15px;
    font-family: inherit;
    font-size: 18px;
    outline: none;
    border-radius: 3px 0 0 3px;
}

select {
    padding: 0 20px;
    font-family: inherit;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    border-radius: 0 3px 3px 0;
    height: auto;
    font-weight: bold;
}

.field-wrapper {
    border-radius: 3px;
}

.full-field input {
    padding: 15px;
    width: 100%;
    border-radius: 3px;
}

.action-btn {
    padding: 10px 30px;
    font-family: inherit;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 2px;
}
