/*
+--------------------------------------------------+
|         This was created by Tyler Chaky          |
|                                                  |
|  __          __   _____   __      __   __   __   |
|  \ \        / /  /  _  \  \ \    / /  /_ | /_ |  |
|   \ \  /\  / /  /  /_\  \  \ \  / /    | |  | |  |
|    \ \/  \/ /  /  _____  \  \ \/ /     | |  | |  |
|     \__/\__/  /__/     \__\  \__/      |_|  |_|  |
|                                                  |
+--------------------------------------------------+
*/

.conversion-result {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(102, 252, 241, 0.05);
    border: 1px dashed var(--accent-color);
    border-radius: 10px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.result-primary {
    font-size: 2rem;
    color: white;
    margin: 0;
    text-shadow: 0 0 15px rgba(102, 252, 241, 0.3);
    word-wrap: break-word;
    line-height: 1.2;
}

.result-secondary {
    font-size: 1.2rem;
    color: var(--text-secondary); 
    margin-top: 10px;
    font-weight: 400;
}

#input-value {
    font-size: 1.5rem;
    padding: 15px;
}

#category-select {
    margin-bottom: 25px;
    border-color: var(--text-secondary);
}

#category-select:focus {
    border-color: var(--accent-color);
}