/* assets/css/style.css */

body {
    background-color: #121212;
    color: #FFFFFF;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2 {
    text-align: center;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
}

#intention-input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background-color: #1E1E1E;
    border: 1px solid #333333;
    color: #FFFFFF;
    border-radius: 4px;
    resize: vertical;
}

#frequency-select, #multiplier-slider {
    width: 100%;
    padding: 10px;
    background-color: #1E1E1E;
    border: 1px solid #333333;
    color: #FFFFFF;
    border-radius: 4px;
}

#boost-checkbox, #keep-awake-checkbox {
    transform: scale(1.5);
    margin-right: 10px;
}

.display-group {
    text-align: center;
    margin-bottom: 20px;
}

#timer-display {
    font-size: 48px;
    margin-bottom: 10px;
}

#iterations-display {
    font-size: 20px;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.button-group button {
    flex: 1 1 30%;
    padding: 15px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#start-stop-button {
    background-color: #28a745;
    color: #FFFFFF;
}

#start-stop-button.stop {
    background-color: #dc3545;
    color: #FFFFFF;
}

#reset-button {
    background-color: #007bff;
    color: #FFFFFF;
}

#load-file-button {
    background-color: #17a2b8;
    color: #FFFFFF;
}

#save-prefs-button {
    background-color: #ffc107;
    color: #000000;
}

#load-prefs-button {
    background-color: #28a745;
    color: #FFFFFF;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#settings-button {
    background-color: #6c757d;
    color: #FFFFFF;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#version-display {
    font-size: 14px;
}
