/* Import the custom font */
@font-face {
    font-family: 'MrRobot';
    src: url('fonts/mrrobot.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Apply the custom font and set default styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'MrRobot', Arial, sans-serif;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header and footer styling */
header, footer {
    background-color: #f8f8f8;
    text-align: center;
    padding: 10px 0;
    color: red; /* Set text color to red */
    flex-shrink: 0; /* Ensure they do not shrink */
}

header {
    position: relative;
}

/* Widgets positioning */
.btc-price-widget, .welcome-widget {
    position: absolute;
    top: 10px;
    background-color: #fff;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    z-index: 1000;
}

.welcome-widget {
    left: 20px;
}

.btc-price-widget {
    right: 20px;
}

/* Main content area */
.main-content {
    display: flex;
    flex: 1; /* Fills available space between header and footer */
    background-color: #eaeaea;
    overflow: auto; /* Ensures scrolling if content overflows */
}

.sidebar {
    background-color: #f0f0f0;
    width: 250px;
    min-width: 100px;
    max-width: 400px;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.resizer {
    width: 5px;
    cursor: ew-resize;
    background-color: #ccc;
    user-select: none;
}

.content {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

footer {
    background-color: #f8f8f8;
    text-align: center;
    padding: 10px 0;
    color: red; /* Set text color to red */
    /* Footer sticks to the bottom of the viewport */
    flex-shrink: 0; /* Prevents footer from shrinking below its content */
}

#instapaper{

     font-family: Garamond, serif;

}

#instapdf {

}

#instapdf > *{
 font-family: Garamond, serif;
}