* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(180deg, #98ff98 0%, #ffffff 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 16px;
    min-height: 100vh;
}

header,
main,
aside,
footer {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

a {
    text-decoration: none;
    color: inherit;
}

header h1 {
    font-size:2em;
}

header nav ul {
    list-style: none;
    display: flex;
    /* justify-content: center; */
    padding: 0;
    margin: 0;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

header nav ul li a:hover {
    background-color: #f0f0f0;
}

main section#home #article-list article {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
    border: 1px solid #ccc;
    padding: 15px;
    box-sizing: border-box;
    margin-top:20px;
}

main section#home #article-list article .company-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}

main section#home #article-list article .application-status {
    display: inline-block;
    padding: 4px 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    font-size: 0.8em;
    color: #333;
    text-transform: uppercase;
}

main section#home #article-list article .application-status.status-applied {
    /*background-color: #ffeb3b;
    color: #333;   */
}

main section#home #article-list article .application-status.status-interviewing {
    background-color: #2196f3;
    color: #fff;
}

main section#home #article-list article .application-status.status-offer {
    background-color: #4caf50;
    color: #fff;
}

main section#home #article-list article .application-status.status-rejected {
    background-color: #f44336;
    color: #fff;
}

main section#home #article-list article:first-child {
    margin-top: 0;
}


main form input, main form textarea, main form select{
    display:block;
    width:100%;
    margin-bottom:20px;
    padding:10px;
    border-radius: 3px;
    box-sizing: border-box;
    border: 1px solid #ccc;
}

main #application_memo_list {

}

main #application_memo_list .memo-item {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-top: 10px;
    
}

main #application_memo_list .memo-item .memo-date {
    font-size: 0.8em;
    color: #666;

}

aside #search_input {
    display:block;
    width:100%;
    padding:10px;
    border-radius:3px;
    box-sizing:border-box;
    border:1px solid #ccc;
}

button, a.button {
    display:inline-block;
    padding:10px 20px;
    background:#696;
    color:#fff;
    border:none;
    border-radius:3px;
    cursor:pointer;
    font-size:1em;
    line-height:1.5;
}

button.danger, a.button.danger {
    background:#f44336;
}

.delete-form {
    display: inline;
    margin-left: 10px;
}

footer {
    margin-bottom: 0;
}

.navigation-loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #4caf50, #98ff98);
  animation: loading-slide 1s ease-in-out infinite;
  z-index: 9999;
}

@keyframes loading-slide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.suggestions, .memo-list {
    list-style: none;
}

.suggestions li, .memo-list li {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}