﻿body {
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

#form1 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pear-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
}

.pear-header {
    background: linear-gradient(135deg, #6B6B8E 0%, #8C8CB0 100%);
    padding: 20px 25px;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
}

.pear-header-content {
    flex: 1;
}

.pear-header-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.pear-header-subtitle {
    font-size: 12px;
    opacity: 0.9;
    color: #FF9900;
}

.pear-logo {
    flex-shrink: 0;
}

    .pear-logo img {
        height: 60px;
        width: auto;
    }

.pear-navbar {
    background-color: #7A7A9C;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex-wrap: nowrap;
    min-height: 48px;
}

.pear-nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    flex: 1;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

    .pear-nav-menu li {
        display: flex;
        white-space: nowrap;
    }

    .pear-nav-menu a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 16px;
        color: white;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: background-color 0.3s ease;
        white-space: nowrap;
    }

        .pear-nav-menu a:hover {
            background-color: rgba(0,0,0,0.2);
        }

    .pear-nav-menu img {
        height: 16px;
        width: 16px;
        flex-shrink: 0;
    }

.pear-logoff-btn {
    padding: 0 16px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

    .pear-logoff-btn img {
        height: 24px;
        width: auto;
        cursor: pointer;
        transition: opacity 0.3s ease;
        display: block;
    }

        .pear-logoff-btn img:hover {
            opacity: 0.8;
        }

.pear-content {
    flex: 1;
    padding: 20px;
    background-color: white;
}

.pear-footer {
    background: linear-gradient(135deg, #6B6B8E 0%, #8C8CB0 100%);
    padding: 15px 25px;
    text-align: center;
    color: white;
    font-size: 12px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}