﻿/* Basic container and title styling */
.ts-tool-container {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}


.ts-tool-title {
    color: #333;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}


/* Input fields and textareas */
.ts-input-field {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border-color 0.3s ease;
}


.ts-input-field:focus {
    border-color: #006400;
    outline: none;
}


/* Dark green buttons */
.ts-button {
    background-color: #006400;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin: 5px;
}


.ts-button:hover {
    background-color: #005000;
}


.ts-button:disabled {
    background-color: #aaa;
    cursor: not-allowed;
}


/* Button groups and results */
.ts-button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
}


.ts-result-container {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px dashed #ccc;
}


.ts-result-container p {
    font-weight: bold;
    color: #333;
}


/* Specific tool styling */
.ts-stopwatch-display {
    font-size: 48px;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    margin-bottom: 20px;
}