/* Comfortable wide layout - not quite full width */
body {
    font-family: Georgia, serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 40px 5%;
}

/* Constrained but generous container */
center {
    display: block;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Content area */
table {
    width: 100% !important;
    background: white;
    padding: 50px;
    margin: 0;
}

/* Large image */
img[src*="vaults_images"] {
    width: auto;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Description text */
td {
    font-size: 17px;
    line-height: 1.7;
    padding: 25px;
}

/* Title text */
b {
    font-size: 20px;
    color: #8B4513;
}

/* Navigation buttons */
img[name] {
    width: 60px;
    height: auto;
    margin: 0 8px;
    transition: transform 0.2s;
}

img[name]:hover {
    transform: scale(1.1);
}

/* Hide spacers */
img[src*="spacer"] {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }
    
    table {
        padding: 30px 20px;
    }
    
    img[src*="vaults_images"] {
        max-width: 100%;
    }
}