/* ============================================
   WIBOC - CSS Reset
   ============================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--wiboc-font);
    font-size: var(--wiboc-font-size-base);
    line-height: 1.6;
    color: var(--wiboc-dark);
    background: linear-gradient(135deg, #F7F7F7 0%, #E8EDF2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--wiboc-primary);
    text-decoration: none;
    transition: var(--wiboc-transition);
}

a:hover {
    color: var(--wiboc-primary-hover);
}

ul, ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    width: 100%;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: var(--wiboc-weight-bold);
}

strong {
    font-weight: var(--wiboc-weight-semibold);
}

.main-content {
    flex: 1;
}

/* Remove default fieldset styles */
fieldset {
    border: none;
}

/* Remove default hr style */
hr {
    border: none;
    border-top: 1px solid var(--wiboc-gray-300);
    margin: var(--wiboc-spacing-lg) 0;
}