.commonfact-simple-container1 {
    background-color: white;
    /*border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 20px auto;
    font-family: Arial, sans-serif;*/
	margin-left: 0;
	width: 650px;
}

.commonfact-simple-container h1 {
    color: #333;
    margin-top: 0;
    font-size: 28px;
}

.commonfact-simple-description {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.5;
}

.commonfact-simple-input-section {
    margin-bottom: 20px;
}

.commonfact-simple-input-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #444;
}

.commonfact-simple-input-section input[type="text"] {
    width: 400px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.commonfact-simple-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.commonfact-simple-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

#commonfact-simple-calculate {
    background-color: #4CAF50;
    color: white;
}

#commonfact-simple-calculate:hover {
    background-color: #45a049;
}

#commonfact-simple-clear {
    background-color: #f44336;
    color: white;
}

#commonfact-simple-clear:hover {
    background-color: #d32f2f;
}

.commonfact-simple-result-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.commonfact-simple-result-title {
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.commonfact-simple-common-factors {
    font-size: 18px;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.commonfact-simple-gcf-result {
    font-size: 18px;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #e8f5e9;
    border-radius: 4px;
    border-left: 4px solid #4CAF50;
}

.commonfact-simple-prime-factorization {
    margin-top: 25px;
}

.commonfact-simple-prime-factorization h3 {
    margin-bottom: 15px;
    color: #333;
}

.commonfact-simple-prime-steps {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    font-family: monospace;
    line-height: 1.6;
}

.commonfact-simple-error {
    color: #f44336;
    margin-top: 10px;
    font-weight: bold;
}