/**
 * Tattoo Tip Calculator Styles
 * 
 * Colors:
 * - Call to actions: #000000 (black)
 * - Background: #ffffff (white)
 */

/* Container Styles */
.tattoo-tip-calculator-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.tattoo-tip-calculator-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #000000;
}

/* Form Group Styles */
.ttc-form-group {
    margin-bottom: 20px;
}

.ttc-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.ttc-form-group input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Tip Buttons Styles */
.ttc-tip-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.ttc-tip-btn {
    flex: 1;
    padding: 8px 15px;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ttc-tip-btn:hover {
    background-color: #eaeaea;
}

.ttc-tip-btn.active {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

/* Calculate Button Styles */
#ttc-calculate-btn {
    width: 100%;
    padding: 12px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#ttc-calculate-btn:hover {
    background-color: #333333;
}

/* Results Styles */
.ttc-results {
    margin-top: 25px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.ttc-result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.ttc-result-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.ttc-result-label {
    font-weight: 600;
}

.ttc-result-value {
    font-weight: 700;
    color: #000000;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tattoo-tip-calculator-container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .ttc-tip-buttons {
        flex-direction: column;
        gap: 5px;
    }
} 