/*
Theme Name: Megapack
Theme URI: https://example.com/
Author: Pheodot
Description: Minimalistic theme for cardboard box manufacturing company.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: megapack
*/

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #fff;
    color: #333;
}
/* === Глобальні стилі для кнопок === */
button,
input[type="submit"] {
    background-color: #f7931e;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
    transition: background-color 0.3s;
}

button:hover,
input[type="submit"]:hover {
    background-color: #e67609;
}

button:focus,
input[type="submit"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(247, 147, 30, 0.3);
}
