/* style.css */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header h1 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #333;
}

.tags {
    margin-bottom: 10px;
}

.tags span {
    display: inline-block;
    background-color: #e0e0e0;
    color: #333;
    padding: 5px 10px;
    margin-right: 5px;
    border-radius: 5px;
    font-size: 12px;
}

.date p {
    font-size: 12px;
    color: #666;
}

.tldr {
    margin-top: 20px;
}

.tldr h2 {
    font-size: 24px;
    color: #333;
    border-bottom: 2px solid #f5a623;
    display: inline-block;
    padding-bottom: 5px;
    display: block;
}

.tldr ul {
    list-style-type: none;
    padding: 0;
}

.tldr li {
    padding: 5px 0;
    font-size: 15px;
    /* margin-top: 5px; */
}

.link {
    margin-top: 20px;
}

.link a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: bold;
}

.link a:hover {
    text-decoration: underline;
}

.code-container {
    position: relative;
    background-color: #f8f9fa;
    padding: 5px 40px 5px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: monospace;
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    white-space: pre-wrap;
    /* text-align: left; */
    justify-content: flex-start;
    margin-top: 10px;
    /* margin-bottom: 10px; */
}

.copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 12px;
}

/* .gitCommand {
    position: relative;
    top: 30px;
} */

pre {
    margin: 5px;
    padding: 5px;
    line-height: 1.2;
}

.up {
    margin: 15px 0px 15px 0px;
}

.code-container-answer {
    position: relative;
    background-color: #000000;
    padding: 5px 40px 5px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: monospace;
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    white-space: pre-wrap;
    /* text-align: left; */
    justify-content: flex-start;
}

#gitCommand {
    color: white;
}

/* .image-container {
    text-align: center; 
    padding: 0px 5px 0px 5px; 
} */

.image-container {
    text-align: center; 
    /* max-width: 750px;
    width: 100%;
    margin: 0 auto; */
  }
  
.image-container img {
    max-width: 100%;
    height: auto;
    display: inline-block;
  }
  

#yellow_bg {
    background-color: yellow;
}

#second-line {
    padding: 0px;
}

#alert-red {
    margin-top: 15px;
    text-align: left;
}

#gif {
    text-align: center;;
}

#red-letter{
    font-size: 12px;
    color: red;
}

#green-letter{
    font-size: 12px;
    color: green;
}