@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');

body {
    font-family: 'Roboto Mono', monospace;
    padding: 20px;
    background-color: rgb(0,13,17); /* Darkened background to match the logo */
    color: #B3B8CD; /* Soft, glowy text color for readability */
    line-height: 1.6;
}
.container {
    position: relative; /* New addition */
}
.container, .sniplet-top-bar, .sniplet-description {
    background-color: transparent; /* For a sleek look */
    color: #A5F2F3; /* Cool, easy-on-the-eyes color */
}
.sniplet-top-bar {
    position: relative;
    min-height: 150px; /* Adjust based on your actual content needs */
}
.sniplet-description {
    margin-top: 5px;
    margin-left: 230px; /* Adjusted to avoid overlap */
}
.sniplet-link {
    color: #FF8C00; /* Bold orange color */
    background-color: #012E40; /* Darker background for contrast */
    padding: 10px 15px;
    border: 1px solid #FF8C00; /* Orange border */
    border-radius: 5px;
    margin: 10px 0;
    cursor: pointer;
    z-index: 9999; /* Ensure it's above other elements if necessary */
    font-size: 1.4em;
    position: absolute;
    top: -15px; /* Adjusted for elevation */
    left: 2px; /* Adjusted to move left */
}

.name-editor-container, .name-editor-label {
    color: #FF8C00; /* Maintaining the orange theme */
}
.name-editor-container {
    position: absolute;
    left: 22px;
    bottom: 30px; /* Adjust this value to ensure it's just above the CodeMirror box */
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sniplet-name-editor {
    color: #222222; /* Maintaining the orange theme */
        width: 100%;
        margin: 0;
    }
   
.name-editor-label {
    font-size: 0.8em; /* Smaller font size for the label */
    margin-bottom: 2px; /* Smaller margin to keep it close to the input field */
    text-align: center;
    width: 100%;
}

.link-container, .drag-indicator {
    background: #012E40; /* Matching dark theme background */
    color: #A5F2F3; /* Maintaining readability */
}

#tipToggleContainer, #tipToggleContainer label {
    color: #A5F2F3; /* Ensuring visibility against the dark background */
}
#tipToggleContainer {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 10px;
}

#tipToggleContainer label {
    color: #999999; /* Soft pale orange for subtlety */
    font-weight: normal;
    font-size: .8em;
    position: relative;
    top: -2px;
    margin-right: -8px;
    font-family: Arial, sans-serif; /* Making it different and less bold */
}

a:link, a:visited {
    color: #FF8C00; /* Bright orange for links, ensuring visibility */
    text-decoration: none; /* Optional: removes underline */
}

a:hover {
    color: #A5F2F3; /* Teal for hover, adds a nice contrast */
    text-decoration: underline; /* Optional: underlines on hover for clarity */
}

a:active {
    color: #FFA07A; /* Lighter orange for active/clicked links */
}

.CodeMirror {
    border-color: #FF8C00; /* Orange border for CodeMirror */
}

.CodeMirror-gutters {
    background-color: #01313f; /* Slightly lighter than body for visibility */
}
