/* Reset and base styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Verdana, Geneva, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #ff6600;
    padding: 5px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header-right {
    text-align: right;
    margin: 0px 10px 0px 0px;
}

.header-left {
    text-align: left;
    margin: 0px 0px 0px 10px;
}

/* Page title */
.page-title {
    background-color: #FFDEBD;
    padding: 15px 0;
    text-align: center;
}

.page-title h1 {
    margin: 0;
    color: #ff6600;
    font-size: 1.5rem;
}

/* Content */
.content {
    padding: 2rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Links */
a {
    color: #0000ff;
    text-decoration: underline;
}

a:hover {
    opacity: 0.8;
}

.yellow {
    color: yellow;
}

/* Strong text */
strong {
    font-weight: bold;
    color: #ff6600;
}

/* Title class */
.title {
    color: #ffff00;
    font-size: 1.1rem;
    line-height: 1.2;
}

/* Horizontal rule */
hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 2rem 0;
}

/* Deleted pages section */
.deleted-pages {
    margin-top: 2rem;
}

/* Item styling */
.item {
    background-color: #f9f9f9;
    border-left: 4px solid #ff6600;
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.item:hover {
    background-color: #f0f0f0;
}

.item a {
    font-weight: 500;
    text-decoration: none;
    color: #333;
}

.item a:hover {
    color: #ff6600;
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .header-right,
    .header-left {
        text-align: center;
    }
    
    .title {
        font-size: 1rem;
    }
    
    .page-title h1 {
        font-size: 1.3rem;
    }
    
    .content {
        padding: 1.5rem 0;
    }
    
    .content p {
        font-size: 0.95rem;
    }
    
    .item {
        padding: 8px 12px;
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .title {
        font-size: 0.9rem;
    }
    
    .page-title h1 {
        font-size: 1.1rem;
    }
    
    .content p {
        font-size: 0.9rem;
    }
    
    .item {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
}